diff options
author | Valerio Virgillito | 2012-05-03 23:01:31 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-03 23:01:31 -0700 |
commit | 60388a7d01d9e34b5cd15bd5cb190a610e4f9a0e (patch) | |
tree | 9bfa4cc0fdb3a39abf151c05d013f2cde7aad296 /imports/codemirror/mode/vbscript/vbscript.js | |
parent | dca94d9d1e2a6a113356b685df991472ea3e5576 (diff) | |
parent | fec9ccee11ea21ffc95edce6e89d0d302b63e3d8 (diff) | |
download | ninja-60388a7d01d9e34b5cd15bd5cb190a610e4f9a0e.tar.gz |
Merge branch 'refs/heads/master' into tag-2.0
Diffstat (limited to 'imports/codemirror/mode/vbscript/vbscript.js')
-rw-r--r-- | imports/codemirror/mode/vbscript/vbscript.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/imports/codemirror/mode/vbscript/vbscript.js b/imports/codemirror/mode/vbscript/vbscript.js new file mode 100644 index 00000000..65d6c212 --- /dev/null +++ b/imports/codemirror/mode/vbscript/vbscript.js | |||
@@ -0,0 +1,26 @@ | |||
1 | CodeMirror.defineMode("vbscript", function() { | ||
2 | var regexVBScriptKeyword = /^(?:Call|Case|CDate|Clear|CInt|CLng|Const|CStr|Description|Dim|Do|Each|Else|ElseIf|End|Err|Error|Exit|False|For|Function|If|LCase|Loop|LTrim|Next|Nothing|Now|Number|On|Preserve|Quit|ReDim|Resume|RTrim|Select|Set|Sub|Then|To|Trim|True|UBound|UCase|Until|VbCr|VbCrLf|VbLf|VbTab)$/im; | ||
3 | |||
4 | return { | ||
5 | token: function(stream) { | ||
6 | if (stream.eatSpace()) return null; | ||
7 | var ch = stream.next(); | ||
8 | if (ch == "'") { | ||
9 | stream.skipToEnd(); | ||
10 | return "comment"; | ||
11 | } | ||
12 | if (ch == '"') { | ||
13 | stream.skipTo('"'); | ||
14 | return "string"; | ||
15 | } | ||
16 | |||
17 | if (/\w/.test(ch)) { | ||
18 | stream.eatWhile(/\w/); | ||
19 | if (regexVBScriptKeyword.test(stream.current())) return "keyword"; | ||
20 | } | ||
21 | return null; | ||
22 | } | ||
23 | }; | ||
24 | }); | ||
25 | |||
26 | CodeMirror.defineMIME("text/vbscript", "vbscript"); | ||