diff options
author | Pushkar Joshi | 2012-03-06 17:04:40 -0800 |
---|---|---|
committer | Pushkar Joshi | 2012-03-06 17:04:40 -0800 |
commit | 7a43958033906b2273de88bc2a26cda7a905d202 (patch) | |
tree | f71817e712c4b07a48257a4f0b206cf9033421df /imports/codemirror/mode/javascript/javascript.js | |
parent | 264e3d8e6d3624083d2fab9fe2560234553bb2ad (diff) | |
parent | 2e3943a8f751ec572066f168b58464c24b9f29e5 (diff) | |
download | ninja-7a43958033906b2273de88bc2a26cda7a905d202.tar.gz |
Merge branch 'master' into brushtool
Diffstat (limited to 'imports/codemirror/mode/javascript/javascript.js')
-rw-r--r--[-rwxr-xr-x] | imports/codemirror/mode/javascript/javascript.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/imports/codemirror/mode/javascript/javascript.js b/imports/codemirror/mode/javascript/javascript.js index be2a0698..b9388bc9 100755..100644 --- a/imports/codemirror/mode/javascript/javascript.js +++ b/imports/codemirror/mode/javascript/javascript.js | |||
@@ -69,7 +69,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) { | |||
69 | else if (state.reAllowed) { | 69 | else if (state.reAllowed) { |
70 | nextUntilUnescaped(stream, "/"); | 70 | nextUntilUnescaped(stream, "/"); |
71 | stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla | 71 | stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla |
72 | return ret("regexp", "string"); | 72 | return ret("regexp", "string-2"); |
73 | } | 73 | } |
74 | else { | 74 | else { |
75 | stream.eatWhile(isOperatorChar); | 75 | stream.eatWhile(isOperatorChar); |
@@ -230,7 +230,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) { | |||
230 | if (atomicTypes.hasOwnProperty(type)) return cont(maybeoperator); | 230 | if (atomicTypes.hasOwnProperty(type)) return cont(maybeoperator); |
231 | if (type == "function") return cont(functiondef); | 231 | if (type == "function") return cont(functiondef); |
232 | if (type == "keyword c") return cont(maybeexpression); | 232 | if (type == "keyword c") return cont(maybeexpression); |
233 | if (type == "(") return cont(pushlex(")"), expression, expect(")"), poplex, maybeoperator); | 233 | if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeoperator); |
234 | if (type == "operator") return cont(expression); | 234 | if (type == "operator") return cont(expression); |
235 | if (type == "[") return cont(pushlex("]"), commasep(expression, "]"), poplex, maybeoperator); | 235 | if (type == "[") return cont(pushlex("]"), commasep(expression, "]"), poplex, maybeoperator); |
236 | if (type == "{") return cont(pushlex("}"), commasep(objprop, "}"), poplex, maybeoperator); | 236 | if (type == "{") return cont(pushlex("}"), commasep(objprop, "}"), poplex, maybeoperator); |