0

Update to 7.1

This commit is contained in:
Rei
2012-08-14 22:13:27 +08:00
parent c48a19bb3f
commit 7d6da30689
84 changed files with 4179 additions and 2385 deletions

View File

@@ -3,7 +3,7 @@ Language: Smalltalk
Author: Vladimir Gubarkov <xonixx@gmail.com>
*/
hljs.LANGUAGES.smalltalk = function() {
hljs.LANGUAGES['smalltalk'] = function(hljs) {
var VAR_IDENT_RE = '[a-z][a-zA-Z0-9_]*';
var CHAR = {
className: 'char',
@@ -15,7 +15,7 @@ hljs.LANGUAGES.smalltalk = function() {
};
return {
defaultMode: {
keywords: {'self': 1, 'super': 1, 'nil': 1, 'true': 1, 'false': 1, 'thisContext': 1}, // only 6
keywords: 'self super nil true false thisContext', // only 6
contains: [
{
className: 'comment',
@@ -52,4 +52,4 @@ hljs.LANGUAGES.smalltalk = function() {
]
}
};
}();
}(hljs);