Updated codemirror to 5.4.0
This commit is contained in:
3
public/vendor/codemirror/mode/ecl/ecl.js
vendored
3
public/vendor/codemirror/mode/ecl/ecl.js
vendored
@@ -34,7 +34,6 @@ CodeMirror.defineMode("ecl", function(config) {
|
||||
var blockKeywords = words("catch class do else finally for if switch try while");
|
||||
var atoms = words("true false null");
|
||||
var hooks = {"#": metaHook};
|
||||
var multiLineStrings;
|
||||
var isOperatorChar = /[+\-*&%=<>!?|\/]/;
|
||||
|
||||
var curPunc;
|
||||
@@ -112,7 +111,7 @@ CodeMirror.defineMode("ecl", function(config) {
|
||||
if (next == quote && !escaped) {end = true; break;}
|
||||
escaped = !escaped && next == "\\";
|
||||
}
|
||||
if (end || !(escaped || multiLineStrings))
|
||||
if (end || !escaped)
|
||||
state.tokenize = tokenBase;
|
||||
return "string";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user