Sha256: b0c68504fff2c46b74f30483f72b9b3b37871649e89512d93ddef0cf5cd0a94e

Contents?: true

Size: 877 Bytes

Versions: 80

Compression:

Stored size: 877 Bytes

Contents

// brush: "smalltalk" aliases: []

//	This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
//	Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
//	See <jquery.syntax.js> for licensing details.

Syntax.register('smalltalk', function(brush) {
	var operators = ["[", "]", "|", ":=", "."];
	
	var values = ["self", "super", "true", "false", "nil"];
	
	brush.push(values, {klass: 'constant'});
	brush.push(operators, {klass: 'operator'});
	
	// Objective-C style functions
	brush.push({pattern: /\w+:/g, klass: 'function'});
	
	// Camelcase Types
	brush.push(Syntax.lib.camelCaseType);
	
	// Strings
	brush.push(Syntax.lib.singleQuotedString);
	brush.push(Syntax.lib.doubleQuotedString);
	brush.push(Syntax.lib.stringEscape);
	
	// Numbers
	brush.push(Syntax.lib.decimalNumber);
	brush.push(Syntax.lib.hexNumber);
});

Version data entries

80 entries across 49 versions & 2 rubygems

Version Path
utopia-wiki-0.3.0 lib/components/jquery-syntax/source/jquery.syntax.brush.smalltalk.js
utopia-wiki-0.2.0 lib/components/jquery-syntax/source/jquery.syntax.brush.smalltalk.js
utopia-2.13.4 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.4 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.3 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.3 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.2 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.2 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.1 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.1 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.0 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.13.0 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.4 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.4 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.3 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.3 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.2 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.2 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.1 docs/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js
utopia-2.12.1 documentation/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js