vendor/assets/javascripts/codemirror/modes/julia.js in codemirror-rails-5.2 vs vendor/assets/javascripts/codemirror/modes/julia.js in codemirror-rails-5.3
- old
+ new
@@ -32,11 +32,10 @@
var builtins = wordRegexp(builtinList);
var openers = wordRegexp(blockOpeners);
var closers = wordRegexp(blockClosers);
var macro = /^@[_A-Za-z][_A-Za-z0-9]*/;
var symbol = /^:[_A-Za-z][_A-Za-z0-9]*/;
- var indentInfo = null;
function in_array(state) {
var ch = cur_scope(state);
if(ch=="[" || ch=="{") {
return true;
@@ -245,10 +244,9 @@
tokenString.isString = true;
return tokenString;
}
function tokenLexer(stream, state) {
- indentInfo = null;
var style = state.tokenize(stream, state);
var current = stream.current();
// Handle '.' connected identifiers
if (current === '.') {