1// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
2// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
3
4
5Syntax.register('smalltalk',function(brush){var operators=["[","]","|",":=","."];var values=["self","super","true","false","nil"];brush.push(values,{klass:'constant'});brush.push(operators,{klass:'operator'});brush.push({pattern:/\w+:/g,klass:'function'});brush.push(Syntax.lib.camelCaseType);brush.push(Syntax.lib.singleQuotedString);brush.push(Syntax.lib.doubleQuotedString);brush.push(Syntax.lib.stringEscape);brush.push(Syntax.lib.decimalNumber);brush.push(Syntax.lib.hexNumber);});