UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

69 lines (65 loc) 1.91 kB
define(["../_base"], function(dh){ var dhc = dh.constants; var GROOVY_KEYWORDS = { 'false': 1, 'int': 1, 'float': 1, 'while': 1, 'private': 1, 'char': 1, 'catch': 1, 'abstract': 1, 'assert': 1, 'const': 1, 'byte': 1, 'for': 1, 'final': 1, 'finally': 1, 'implements': 1, 'import': 1, 'extends': 1, 'long': 1, 'throw': 1, 'instanceof': 2, 'static': 1, 'protected': 1, 'boolean': 1, 'interface': 2, 'native': 1, 'if': 1, 'public': 1, 'do': 1, 'return': 1, 'goto': 1, 'package': 2, 'void': 2, 'else': 1, 'break': 1, 'new': 1, 'strictfp': 1, 'super': 1, 'true': 1, 'class': 1, 'synchronized': 1, 'case': 1, 'short': 1, 'throws': 1, 'transient': 1, 'double': 1, 'volatile': 1, 'try': 1, 'this': 1, 'switch': 1, 'continue': 1, 'def': 2 } dh.languages.groovy = { // summary: // Groovy highlight definitions defaultMode: { lexems: [dhc.UNDERSCORE_IDENT_RE], illegal: '</', contains: ['comment', 'string', 'number', 'function', 'block'], keywords: GROOVY_KEYWORDS }, modes: [ dhc.C_LINE_COMMENT_MODE, dhc.C_BLOCK_COMMENT_MODE, dhc.C_NUMBER_MODE, { className: 'string', begin: '\"\"\"', end: '\"\"\"', contains: ['escape'], relevance: 0 }, dhc.QUOTE_STRING_MODE, dhc.BACKSLASH_ESCAPE, { className: 'string', begin: '\'\'\'', end: '\'\'\'', contains: ['escape'], relevance: 0 }, dhc.APOS_STRING_MODE, { className: 'function', begin: '\\(', end: '\\)', contains: ['comment', 'number', 'string', 'function', 'block'], keywords: GROOVY_KEYWORDS }, { lexems: [dhc.UNDERSCORE_IDENT_RE], className: 'block', begin: '\\{', end: '\\}', contains: ['comment', 'string', 'number', 'function', 'block'], keywords: GROOVY_KEYWORDS } ], //exporting constants GROOVY_KEYWORDS: GROOVY_KEYWORDS }; return dh.languages.groovy; });