[9.2.22] Codemirror ok mais pb de path
This commit is contained in:
parent
b0e43ed737
commit
cd041c4ee8
344
core/vendor/codemirror/mode/css/css.js
vendored
344
core/vendor/codemirror/mode/css/css.js
vendored
@ -1,5 +1,5 @@
|
|||||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||||
|
|
||||||
(function(mod) {
|
(function(mod) {
|
||||||
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
||||||
@ -12,24 +12,18 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
CodeMirror.defineMode("css", function(config, parserConfig) {
|
CodeMirror.defineMode("css", function(config, parserConfig) {
|
||||||
var inline = parserConfig.inline
|
|
||||||
if (!parserConfig.propertyKeywords) parserConfig = CodeMirror.resolveMode("text/css");
|
if (!parserConfig.propertyKeywords) parserConfig = CodeMirror.resolveMode("text/css");
|
||||||
|
|
||||||
var indentUnit = config.indentUnit,
|
var indentUnit = config.indentUnit,
|
||||||
tokenHooks = parserConfig.tokenHooks,
|
tokenHooks = parserConfig.tokenHooks,
|
||||||
documentTypes = parserConfig.documentTypes || {},
|
|
||||||
mediaTypes = parserConfig.mediaTypes || {},
|
mediaTypes = parserConfig.mediaTypes || {},
|
||||||
mediaFeatures = parserConfig.mediaFeatures || {},
|
mediaFeatures = parserConfig.mediaFeatures || {},
|
||||||
mediaValueKeywords = parserConfig.mediaValueKeywords || {},
|
|
||||||
propertyKeywords = parserConfig.propertyKeywords || {},
|
propertyKeywords = parserConfig.propertyKeywords || {},
|
||||||
nonStandardPropertyKeywords = parserConfig.nonStandardPropertyKeywords || {},
|
nonStandardPropertyKeywords = parserConfig.nonStandardPropertyKeywords || {},
|
||||||
fontProperties = parserConfig.fontProperties || {},
|
|
||||||
counterDescriptors = parserConfig.counterDescriptors || {},
|
|
||||||
colorKeywords = parserConfig.colorKeywords || {},
|
colorKeywords = parserConfig.colorKeywords || {},
|
||||||
valueKeywords = parserConfig.valueKeywords || {},
|
valueKeywords = parserConfig.valueKeywords || {},
|
||||||
allowNested = parserConfig.allowNested,
|
fontProperties = parserConfig.fontProperties || {},
|
||||||
lineComment = parserConfig.lineComment,
|
allowNested = parserConfig.allowNested;
|
||||||
supportsAtComponent = parserConfig.supportsAtComponent === true;
|
|
||||||
|
|
||||||
var type, override;
|
var type, override;
|
||||||
function ret(style, tp) { type = tp; return style; }
|
function ret(style, tp) { type = tp; return style; }
|
||||||
@ -63,11 +57,6 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
if (/[\d.]/.test(stream.peek())) {
|
if (/[\d.]/.test(stream.peek())) {
|
||||||
stream.eatWhile(/[\w.%]/);
|
stream.eatWhile(/[\w.%]/);
|
||||||
return ret("number", "unit");
|
return ret("number", "unit");
|
||||||
} else if (stream.match(/^-[\w\\\-]*/)) {
|
|
||||||
stream.eatWhile(/[\w\\\-]/);
|
|
||||||
if (stream.match(/^\s*:/, false))
|
|
||||||
return ret("variable-2", "variable-definition");
|
|
||||||
return ret("variable-2", "variable");
|
|
||||||
} else if (stream.match(/^\w+-/)) {
|
} else if (stream.match(/^\w+-/)) {
|
||||||
return ret("meta", "meta");
|
return ret("meta", "meta");
|
||||||
}
|
}
|
||||||
@ -77,11 +66,10 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
return ret("qualifier", "qualifier");
|
return ret("qualifier", "qualifier");
|
||||||
} else if (/[:;{}\[\]\(\)]/.test(ch)) {
|
} else if (/[:;{}\[\]\(\)]/.test(ch)) {
|
||||||
return ret(null, ch);
|
return ret(null, ch);
|
||||||
} else if (stream.match(/[\w-.]+(?=\()/)) {
|
} else if (ch == "u" && stream.match("rl(")) {
|
||||||
if (/^(url(-prefix)?|domain|regexp)$/.test(stream.current().toLowerCase())) {
|
stream.backUp(1);
|
||||||
state.tokenize = tokenParenthesized;
|
state.tokenize = tokenParenthesized;
|
||||||
}
|
return ret("property", "word");
|
||||||
return ret("variable callee", "variable");
|
|
||||||
} else if (/[\w\\\-]/.test(ch)) {
|
} else if (/[\w\\\-]/.test(ch)) {
|
||||||
stream.eatWhile(/[\w\\\-]/);
|
stream.eatWhile(/[\w\\\-]/);
|
||||||
return ret("property", "word");
|
return ret("property", "word");
|
||||||
@ -122,13 +110,12 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
this.prev = prev;
|
this.prev = prev;
|
||||||
}
|
}
|
||||||
|
|
||||||
function pushContext(state, stream, type, indent) {
|
function pushContext(state, stream, type) {
|
||||||
state.context = new Context(type, stream.indentation() + (indent === false ? 0 : indentUnit), state.context);
|
state.context = new Context(type, stream.indentation() + indentUnit, state.context);
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
function popContext(state) {
|
function popContext(state) {
|
||||||
if (state.context.prev)
|
|
||||||
state.context = state.context.prev;
|
state.context = state.context.prev;
|
||||||
return state.context.type;
|
return state.context.type;
|
||||||
}
|
}
|
||||||
@ -161,16 +148,11 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
return pushContext(state, stream, "block");
|
return pushContext(state, stream, "block");
|
||||||
} else if (type == "}" && state.context.prev) {
|
} else if (type == "}" && state.context.prev) {
|
||||||
return popContext(state);
|
return popContext(state);
|
||||||
} else if (supportsAtComponent && /@component/i.test(type)) {
|
} else if (type == "@media") {
|
||||||
return pushContext(state, stream, "atComponentBlock");
|
return pushContext(state, stream, "media");
|
||||||
} else if (/^@(-moz-)?document$/i.test(type)) {
|
} else if (type == "@font-face") {
|
||||||
return pushContext(state, stream, "documentTypes");
|
return "font_face_before";
|
||||||
} else if (/^@(media|supports|(-moz-)?document|import)$/i.test(type)) {
|
} else if (/^@(-(moz|ms|o|webkit)-)?keyframes$/.test(type)) {
|
||||||
return pushContext(state, stream, "atBlock");
|
|
||||||
} else if (/^@(font-face|counter-style)/i.test(type)) {
|
|
||||||
state.stateArg = type;
|
|
||||||
return "restricted_atBlock_before";
|
|
||||||
} else if (/^@(-(moz|ms|o|webkit)-)?keyframes$/i.test(type)) {
|
|
||||||
return "keyframes";
|
return "keyframes";
|
||||||
} else if (type && type.charAt(0) == "@") {
|
} else if (type && type.charAt(0) == "@") {
|
||||||
return pushContext(state, stream, "at");
|
return pushContext(state, stream, "at");
|
||||||
@ -227,7 +209,7 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
if (type == "}" || type == "{") return popAndPass(type, stream, state);
|
if (type == "}" || type == "{") return popAndPass(type, stream, state);
|
||||||
if (type == "(") return pushContext(state, stream, "parens");
|
if (type == "(") return pushContext(state, stream, "parens");
|
||||||
|
|
||||||
if (type == "hash" && !/^#([0-9a-fA-f]{3,4}|[0-9a-fA-f]{6}|[0-9a-fA-f]{8})$/.test(stream.current())) {
|
if (type == "hash" && !/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(stream.current())) {
|
||||||
override += " error";
|
override += " error";
|
||||||
} else if (type == "word") {
|
} else if (type == "word") {
|
||||||
wordAsValue(stream);
|
wordAsValue(stream);
|
||||||
@ -247,14 +229,11 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
if (type == "{" || type == "}") return popAndPass(type, stream, state);
|
if (type == "{" || type == "}") return popAndPass(type, stream, state);
|
||||||
if (type == ")") return popContext(state);
|
if (type == ")") return popContext(state);
|
||||||
if (type == "(") return pushContext(state, stream, "parens");
|
if (type == "(") return pushContext(state, stream, "parens");
|
||||||
if (type == "interpolation") return pushContext(state, stream, "interpolation");
|
|
||||||
if (type == "word") wordAsValue(stream);
|
if (type == "word") wordAsValue(stream);
|
||||||
return "parens";
|
return "parens";
|
||||||
};
|
};
|
||||||
|
|
||||||
states.pseudo = function(type, stream, state) {
|
states.pseudo = function(type, stream, state) {
|
||||||
if (type == "meta") return "pseudo";
|
|
||||||
|
|
||||||
if (type == "word") {
|
if (type == "word") {
|
||||||
override = "variable-3";
|
override = "variable-3";
|
||||||
return state.context.type;
|
return state.context.type;
|
||||||
@ -262,86 +241,47 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
return pass(type, stream, state);
|
return pass(type, stream, state);
|
||||||
};
|
};
|
||||||
|
|
||||||
states.documentTypes = function(type, stream, state) {
|
states.media = function(type, stream, state) {
|
||||||
if (type == "word" && documentTypes.hasOwnProperty(stream.current())) {
|
if (type == "(") return pushContext(state, stream, "media_parens");
|
||||||
override = "tag";
|
if (type == "}") return popAndPass(type, stream, state);
|
||||||
return state.context.type;
|
|
||||||
} else {
|
|
||||||
return states.atBlock(type, stream, state);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
states.atBlock = function(type, stream, state) {
|
|
||||||
if (type == "(") return pushContext(state, stream, "atBlock_parens");
|
|
||||||
if (type == "}" || type == ";") return popAndPass(type, stream, state);
|
|
||||||
if (type == "{") return popContext(state) && pushContext(state, stream, allowNested ? "block" : "top");
|
if (type == "{") return popContext(state) && pushContext(state, stream, allowNested ? "block" : "top");
|
||||||
|
|
||||||
if (type == "interpolation") return pushContext(state, stream, "interpolation");
|
|
||||||
|
|
||||||
if (type == "word") {
|
if (type == "word") {
|
||||||
var word = stream.current().toLowerCase();
|
var word = stream.current().toLowerCase();
|
||||||
if (word == "only" || word == "not" || word == "and" || word == "or")
|
if (word == "only" || word == "not" || word == "and")
|
||||||
override = "keyword";
|
override = "keyword";
|
||||||
else if (mediaTypes.hasOwnProperty(word))
|
else if (mediaTypes.hasOwnProperty(word))
|
||||||
override = "attribute";
|
override = "attribute";
|
||||||
else if (mediaFeatures.hasOwnProperty(word))
|
else if (mediaFeatures.hasOwnProperty(word))
|
||||||
override = "property";
|
override = "property";
|
||||||
else if (mediaValueKeywords.hasOwnProperty(word))
|
|
||||||
override = "keyword";
|
|
||||||
else if (propertyKeywords.hasOwnProperty(word))
|
|
||||||
override = "property";
|
|
||||||
else if (nonStandardPropertyKeywords.hasOwnProperty(word))
|
|
||||||
override = "string-2";
|
|
||||||
else if (valueKeywords.hasOwnProperty(word))
|
|
||||||
override = "atom";
|
|
||||||
else if (colorKeywords.hasOwnProperty(word))
|
|
||||||
override = "keyword";
|
|
||||||
else
|
else
|
||||||
override = "error";
|
override = "error";
|
||||||
}
|
}
|
||||||
return state.context.type;
|
return state.context.type;
|
||||||
};
|
};
|
||||||
|
|
||||||
states.atComponentBlock = function(type, stream, state) {
|
states.media_parens = function(type, stream, state) {
|
||||||
if (type == "}")
|
|
||||||
return popAndPass(type, stream, state);
|
|
||||||
if (type == "{")
|
|
||||||
return popContext(state) && pushContext(state, stream, allowNested ? "block" : "top", false);
|
|
||||||
if (type == "word")
|
|
||||||
override = "error";
|
|
||||||
return state.context.type;
|
|
||||||
};
|
|
||||||
|
|
||||||
states.atBlock_parens = function(type, stream, state) {
|
|
||||||
if (type == ")") return popContext(state);
|
if (type == ")") return popContext(state);
|
||||||
if (type == "{" || type == "}") return popAndPass(type, stream, state, 2);
|
if (type == "{" || type == "}") return popAndPass(type, stream, state, 2);
|
||||||
return states.atBlock(type, stream, state);
|
return states.media(type, stream, state);
|
||||||
};
|
};
|
||||||
|
|
||||||
states.restricted_atBlock_before = function(type, stream, state) {
|
states.font_face_before = function(type, stream, state) {
|
||||||
if (type == "{")
|
if (type == "{")
|
||||||
return pushContext(state, stream, "restricted_atBlock");
|
return pushContext(state, stream, "font_face");
|
||||||
if (type == "word" && state.stateArg == "@counter-style") {
|
|
||||||
override = "variable";
|
|
||||||
return "restricted_atBlock_before";
|
|
||||||
}
|
|
||||||
return pass(type, stream, state);
|
return pass(type, stream, state);
|
||||||
};
|
};
|
||||||
|
|
||||||
states.restricted_atBlock = function(type, stream, state) {
|
states.font_face = function(type, stream, state) {
|
||||||
if (type == "}") {
|
if (type == "}") return popContext(state);
|
||||||
state.stateArg = null;
|
|
||||||
return popContext(state);
|
|
||||||
}
|
|
||||||
if (type == "word") {
|
if (type == "word") {
|
||||||
if ((state.stateArg == "@font-face" && !fontProperties.hasOwnProperty(stream.current().toLowerCase())) ||
|
if (!fontProperties.hasOwnProperty(stream.current().toLowerCase()))
|
||||||
(state.stateArg == "@counter-style" && !counterDescriptors.hasOwnProperty(stream.current().toLowerCase())))
|
|
||||||
override = "error";
|
override = "error";
|
||||||
else
|
else
|
||||||
override = "property";
|
override = "property";
|
||||||
return "maybeprop";
|
return "maybeprop";
|
||||||
}
|
}
|
||||||
return "restricted_atBlock";
|
return "font_face";
|
||||||
};
|
};
|
||||||
|
|
||||||
states.keyframes = function(type, stream, state) {
|
states.keyframes = function(type, stream, state) {
|
||||||
@ -361,17 +301,15 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
states.interpolation = function(type, stream, state) {
|
states.interpolation = function(type, stream, state) {
|
||||||
if (type == "}") return popContext(state);
|
if (type == "}") return popContext(state);
|
||||||
if (type == "{" || type == ";") return popAndPass(type, stream, state);
|
if (type == "{" || type == ";") return popAndPass(type, stream, state);
|
||||||
if (type == "word") override = "variable";
|
if (type != "variable") override = "error";
|
||||||
else if (type != "variable" && type != "(" && type != ")") override = "error";
|
|
||||||
return "interpolation";
|
return "interpolation";
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
startState: function(base) {
|
startState: function(base) {
|
||||||
return {tokenize: null,
|
return {tokenize: null,
|
||||||
state: inline ? "block" : "top",
|
state: "top",
|
||||||
stateArg: null,
|
context: new Context("top", base || 0, null)};
|
||||||
context: new Context(inline ? "block" : "top", base || 0, null)};
|
|
||||||
},
|
},
|
||||||
|
|
||||||
token: function(stream, state) {
|
token: function(stream, state) {
|
||||||
@ -382,7 +320,6 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
style = style[0];
|
style = style[0];
|
||||||
}
|
}
|
||||||
override = style;
|
override = style;
|
||||||
if (type != "comment")
|
|
||||||
state.state = states[state.state](type, stream, state);
|
state.state = states[state.state](type, stream, state);
|
||||||
return override;
|
return override;
|
||||||
},
|
},
|
||||||
@ -391,17 +328,12 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
var cx = state.context, ch = textAfter && textAfter.charAt(0);
|
var cx = state.context, ch = textAfter && textAfter.charAt(0);
|
||||||
var indent = cx.indent;
|
var indent = cx.indent;
|
||||||
if (cx.type == "prop" && (ch == "}" || ch == ")")) cx = cx.prev;
|
if (cx.type == "prop" && (ch == "}" || ch == ")")) cx = cx.prev;
|
||||||
if (cx.prev) {
|
if (cx.prev &&
|
||||||
if (ch == "}" && (cx.type == "block" || cx.type == "top" ||
|
(ch == "}" && (cx.type == "block" || cx.type == "top" || cx.type == "interpolation" || cx.type == "font_face") ||
|
||||||
cx.type == "interpolation" || cx.type == "restricted_atBlock")) {
|
ch == ")" && (cx.type == "parens" || cx.type == "media_parens") ||
|
||||||
// Resume indentation from parent context.
|
ch == "{" && (cx.type == "at" || cx.type == "media"))) {
|
||||||
|
indent = cx.indent - indentUnit;
|
||||||
cx = cx.prev;
|
cx = cx.prev;
|
||||||
indent = cx.indent;
|
|
||||||
} else if (ch == ")" && (cx.type == "parens" || cx.type == "atBlock_parens") ||
|
|
||||||
ch == "{" && (cx.type == "at" || cx.type == "atBlock")) {
|
|
||||||
// Dedent relative to current context.
|
|
||||||
indent = Math.max(0, cx.indent - indentUnit);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return indent;
|
return indent;
|
||||||
},
|
},
|
||||||
@ -409,8 +341,6 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
electricChars: "}",
|
electricChars: "}",
|
||||||
blockCommentStart: "/*",
|
blockCommentStart: "/*",
|
||||||
blockCommentEnd: "*/",
|
blockCommentEnd: "*/",
|
||||||
blockCommentContinue: " * ",
|
|
||||||
lineComment: lineComment,
|
|
||||||
fold: "brace"
|
fold: "brace"
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@ -418,15 +348,11 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
function keySet(array) {
|
function keySet(array) {
|
||||||
var keys = {};
|
var keys = {};
|
||||||
for (var i = 0; i < array.length; ++i) {
|
for (var i = 0; i < array.length; ++i) {
|
||||||
keys[array[i].toLowerCase()] = true;
|
keys[array[i]] = true;
|
||||||
}
|
}
|
||||||
return keys;
|
return keys;
|
||||||
}
|
}
|
||||||
|
|
||||||
var documentTypes_ = [
|
|
||||||
"domain", "regexp", "url", "url-prefix"
|
|
||||||
], documentTypes = keySet(documentTypes_);
|
|
||||||
|
|
||||||
var mediaTypes_ = [
|
var mediaTypes_ = [
|
||||||
"all", "aural", "braille", "handheld", "print", "projection", "screen",
|
"all", "aural", "braille", "handheld", "print", "projection", "screen",
|
||||||
"tty", "tv", "embossed"
|
"tty", "tv", "embossed"
|
||||||
@ -440,24 +366,17 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
"min-device-aspect-ratio", "max-device-aspect-ratio", "color", "min-color",
|
"min-device-aspect-ratio", "max-device-aspect-ratio", "color", "min-color",
|
||||||
"max-color", "color-index", "min-color-index", "max-color-index",
|
"max-color", "color-index", "min-color-index", "max-color-index",
|
||||||
"monochrome", "min-monochrome", "max-monochrome", "resolution",
|
"monochrome", "min-monochrome", "max-monochrome", "resolution",
|
||||||
"min-resolution", "max-resolution", "scan", "grid", "orientation",
|
"min-resolution", "max-resolution", "scan", "grid"
|
||||||
"device-pixel-ratio", "min-device-pixel-ratio", "max-device-pixel-ratio",
|
|
||||||
"pointer", "any-pointer", "hover", "any-hover"
|
|
||||||
], mediaFeatures = keySet(mediaFeatures_);
|
], mediaFeatures = keySet(mediaFeatures_);
|
||||||
|
|
||||||
var mediaValueKeywords_ = [
|
|
||||||
"landscape", "portrait", "none", "coarse", "fine", "on-demand", "hover",
|
|
||||||
"interlace", "progressive"
|
|
||||||
], mediaValueKeywords = keySet(mediaValueKeywords_);
|
|
||||||
|
|
||||||
var propertyKeywords_ = [
|
var propertyKeywords_ = [
|
||||||
"align-content", "align-items", "align-self", "alignment-adjust",
|
"align-content", "align-items", "align-self", "alignment-adjust",
|
||||||
"alignment-baseline", "anchor-point", "animation", "animation-delay",
|
"alignment-baseline", "anchor-point", "animation", "animation-delay",
|
||||||
"animation-direction", "animation-duration", "animation-fill-mode",
|
"animation-direction", "animation-duration", "animation-fill-mode",
|
||||||
"animation-iteration-count", "animation-name", "animation-play-state",
|
"animation-iteration-count", "animation-name", "animation-play-state",
|
||||||
"animation-timing-function", "appearance", "azimuth", "backface-visibility",
|
"animation-timing-function", "appearance", "azimuth", "backface-visibility",
|
||||||
"background", "background-attachment", "background-blend-mode", "background-clip",
|
"background", "background-attachment", "background-clip", "background-color",
|
||||||
"background-color", "background-image", "background-origin", "background-position",
|
"background-image", "background-origin", "background-position",
|
||||||
"background-repeat", "background-size", "baseline-shift", "binding",
|
"background-repeat", "background-size", "baseline-shift", "binding",
|
||||||
"bleed", "bookmark-label", "bookmark-level", "bookmark-state",
|
"bleed", "bookmark-label", "bookmark-level", "bookmark-state",
|
||||||
"bookmark-target", "border", "border-bottom", "border-bottom-color",
|
"bookmark-target", "border", "border-bottom", "border-bottom-color",
|
||||||
@ -472,7 +391,7 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
"border-top-left-radius", "border-top-right-radius", "border-top-style",
|
"border-top-left-radius", "border-top-right-radius", "border-top-style",
|
||||||
"border-top-width", "border-width", "bottom", "box-decoration-break",
|
"border-top-width", "border-width", "bottom", "box-decoration-break",
|
||||||
"box-shadow", "box-sizing", "break-after", "break-before", "break-inside",
|
"box-shadow", "box-sizing", "break-after", "break-before", "break-inside",
|
||||||
"caption-side", "caret-color", "clear", "clip", "color", "color-profile", "column-count",
|
"caption-side", "clear", "clip", "color", "color-profile", "column-count",
|
||||||
"column-fill", "column-gap", "column-rule", "column-rule-color",
|
"column-fill", "column-gap", "column-rule", "column-rule-color",
|
||||||
"column-rule-style", "column-rule-width", "column-span", "column-width",
|
"column-rule-style", "column-rule-width", "column-span", "column-width",
|
||||||
"columns", "content", "counter-increment", "counter-reset", "crop", "cue",
|
"columns", "content", "counter-increment", "counter-reset", "crop", "cue",
|
||||||
@ -488,19 +407,19 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
"font-variant-alternates", "font-variant-caps", "font-variant-east-asian",
|
"font-variant-alternates", "font-variant-caps", "font-variant-east-asian",
|
||||||
"font-variant-ligatures", "font-variant-numeric", "font-variant-position",
|
"font-variant-ligatures", "font-variant-numeric", "font-variant-position",
|
||||||
"font-weight", "grid", "grid-area", "grid-auto-columns", "grid-auto-flow",
|
"font-weight", "grid", "grid-area", "grid-auto-columns", "grid-auto-flow",
|
||||||
"grid-auto-rows", "grid-column", "grid-column-end", "grid-column-gap",
|
"grid-auto-position", "grid-auto-rows", "grid-column", "grid-column-end",
|
||||||
"grid-column-start", "grid-gap", "grid-row", "grid-row-end", "grid-row-gap",
|
"grid-column-start", "grid-row", "grid-row-end", "grid-row-start",
|
||||||
"grid-row-start", "grid-template", "grid-template-areas", "grid-template-columns",
|
"grid-template", "grid-template-areas", "grid-template-columns",
|
||||||
"grid-template-rows", "hanging-punctuation", "height", "hyphens",
|
"grid-template-rows", "hanging-punctuation", "height", "hyphens",
|
||||||
"icon", "image-orientation", "image-rendering", "image-resolution",
|
"icon", "image-orientation", "image-rendering", "image-resolution",
|
||||||
"inline-box-align", "justify-content", "justify-items", "justify-self", "left", "letter-spacing",
|
"inline-box-align", "justify-content", "left", "letter-spacing",
|
||||||
"line-break", "line-height", "line-stacking", "line-stacking-ruby",
|
"line-break", "line-height", "line-stacking", "line-stacking-ruby",
|
||||||
"line-stacking-shift", "line-stacking-strategy", "list-style",
|
"line-stacking-shift", "line-stacking-strategy", "list-style",
|
||||||
"list-style-image", "list-style-position", "list-style-type", "margin",
|
"list-style-image", "list-style-position", "list-style-type", "margin",
|
||||||
"margin-bottom", "margin-left", "margin-right", "margin-top",
|
"margin-bottom", "margin-left", "margin-right", "margin-top",
|
||||||
"marks", "marquee-direction", "marquee-loop",
|
"marker-offset", "marks", "marquee-direction", "marquee-loop",
|
||||||
"marquee-play-count", "marquee-speed", "marquee-style", "max-height",
|
"marquee-play-count", "marquee-speed", "marquee-style", "max-height",
|
||||||
"max-width", "min-height", "min-width", "mix-blend-mode", "move-to", "nav-down", "nav-index",
|
"max-width", "min-height", "min-width", "move-to", "nav-down", "nav-index",
|
||||||
"nav-left", "nav-right", "nav-up", "object-fit", "object-position",
|
"nav-left", "nav-right", "nav-up", "object-fit", "object-position",
|
||||||
"opacity", "order", "orphans", "outline",
|
"opacity", "order", "orphans", "outline",
|
||||||
"outline-color", "outline-offset", "outline-style", "outline-width",
|
"outline-color", "outline-offset", "outline-style", "outline-width",
|
||||||
@ -508,7 +427,7 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
"padding", "padding-bottom", "padding-left", "padding-right", "padding-top",
|
"padding", "padding-bottom", "padding-left", "padding-right", "padding-top",
|
||||||
"page", "page-break-after", "page-break-before", "page-break-inside",
|
"page", "page-break-after", "page-break-before", "page-break-inside",
|
||||||
"page-policy", "pause", "pause-after", "pause-before", "perspective",
|
"page-policy", "pause", "pause-after", "pause-before", "perspective",
|
||||||
"perspective-origin", "pitch", "pitch-range", "place-content", "place-items", "place-self", "play-during", "position",
|
"perspective-origin", "pitch", "pitch-range", "play-during", "position",
|
||||||
"presentation-level", "punctuation-trim", "quotes", "region-break-after",
|
"presentation-level", "punctuation-trim", "quotes", "region-break-after",
|
||||||
"region-break-before", "region-break-inside", "region-fragment",
|
"region-break-before", "region-break-inside", "region-fragment",
|
||||||
"rendering-intent", "resize", "rest", "rest-after", "rest-before", "richness",
|
"rendering-intent", "resize", "rest", "rest-after", "rest-before", "richness",
|
||||||
@ -526,9 +445,9 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
"text-wrap", "top", "transform", "transform-origin", "transform-style",
|
"text-wrap", "top", "transform", "transform-origin", "transform-style",
|
||||||
"transition", "transition-delay", "transition-duration",
|
"transition", "transition-delay", "transition-duration",
|
||||||
"transition-property", "transition-timing-function", "unicode-bidi",
|
"transition-property", "transition-timing-function", "unicode-bidi",
|
||||||
"user-select", "vertical-align", "visibility", "voice-balance", "voice-duration",
|
"vertical-align", "visibility", "voice-balance", "voice-duration",
|
||||||
"voice-family", "voice-pitch", "voice-range", "voice-rate", "voice-stress",
|
"voice-family", "voice-pitch", "voice-range", "voice-rate", "voice-stress",
|
||||||
"voice-volume", "volume", "white-space", "widows", "width", "will-change", "word-break",
|
"voice-volume", "volume", "white-space", "widows", "width", "word-break",
|
||||||
"word-spacing", "word-wrap", "z-index",
|
"word-spacing", "word-wrap", "z-index",
|
||||||
// SVG-specific
|
// SVG-specific
|
||||||
"clip-path", "clip-rule", "mask", "enable-background", "filter", "flood-color",
|
"clip-path", "clip-rule", "mask", "enable-background", "filter", "flood-color",
|
||||||
@ -550,16 +469,6 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
"searchfield-results-decoration", "zoom"
|
"searchfield-results-decoration", "zoom"
|
||||||
], nonStandardPropertyKeywords = keySet(nonStandardPropertyKeywords_);
|
], nonStandardPropertyKeywords = keySet(nonStandardPropertyKeywords_);
|
||||||
|
|
||||||
var fontProperties_ = [
|
|
||||||
"font-family", "src", "unicode-range", "font-variant", "font-feature-settings",
|
|
||||||
"font-stretch", "font-weight", "font-style"
|
|
||||||
], fontProperties = keySet(fontProperties_);
|
|
||||||
|
|
||||||
var counterDescriptors_ = [
|
|
||||||
"additive-symbols", "fallback", "negative", "pad", "prefix", "range",
|
|
||||||
"speak-as", "suffix", "symbols", "system"
|
|
||||||
], counterDescriptors = keySet(counterDescriptors_);
|
|
||||||
|
|
||||||
var colorKeywords_ = [
|
var colorKeywords_ = [
|
||||||
"aliceblue", "antiquewhite", "aqua", "aquamarine", "azure", "beige",
|
"aliceblue", "antiquewhite", "aqua", "aquamarine", "azure", "beige",
|
||||||
"bisque", "black", "blanchedalmond", "blue", "blueviolet", "brown",
|
"bisque", "black", "blanchedalmond", "blue", "blueviolet", "brown",
|
||||||
@ -590,50 +499,46 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
], colorKeywords = keySet(colorKeywords_);
|
], colorKeywords = keySet(colorKeywords_);
|
||||||
|
|
||||||
var valueKeywords_ = [
|
var valueKeywords_ = [
|
||||||
"above", "absolute", "activeborder", "additive", "activecaption", "afar",
|
"above", "absolute", "activeborder", "activecaption", "afar",
|
||||||
"after-white-space", "ahead", "alias", "all", "all-scroll", "alphabetic", "alternate",
|
"after-white-space", "ahead", "alias", "all", "all-scroll", "alternate",
|
||||||
"always", "amharic", "amharic-abegede", "antialiased", "appworkspace",
|
"always", "amharic", "amharic-abegede", "antialiased", "appworkspace",
|
||||||
"arabic-indic", "armenian", "asterisks", "attr", "auto", "auto-flow", "avoid", "avoid-column", "avoid-page",
|
"arabic-indic", "armenian", "asterisks", "auto", "avoid", "avoid-column", "avoid-page",
|
||||||
"avoid-region", "background", "backwards", "baseline", "below", "bidi-override", "binary",
|
"avoid-region", "background", "backwards", "baseline", "below", "bidi-override", "binary",
|
||||||
"bengali", "blink", "block", "block-axis", "bold", "bolder", "border", "border-box",
|
"bengali", "blink", "block", "block-axis", "bold", "bolder", "border", "border-box",
|
||||||
"both", "bottom", "break", "break-all", "break-word", "bullets", "button", "button-bevel",
|
"both", "bottom", "break", "break-all", "break-word", "button", "button-bevel",
|
||||||
"buttonface", "buttonhighlight", "buttonshadow", "buttontext", "calc", "cambodian",
|
"buttonface", "buttonhighlight", "buttonshadow", "buttontext", "cambodian",
|
||||||
"capitalize", "caps-lock-indicator", "caption", "captiontext", "caret",
|
"capitalize", "caps-lock-indicator", "caption", "captiontext", "caret",
|
||||||
"cell", "center", "checkbox", "circle", "cjk-decimal", "cjk-earthly-branch",
|
"cell", "center", "checkbox", "circle", "cjk-earthly-branch",
|
||||||
"cjk-heavenly-stem", "cjk-ideographic", "clear", "clip", "close-quote",
|
"cjk-heavenly-stem", "cjk-ideographic", "clear", "clip", "close-quote",
|
||||||
"col-resize", "collapse", "color", "color-burn", "color-dodge", "column", "column-reverse",
|
"col-resize", "collapse", "column", "compact", "condensed", "contain", "content",
|
||||||
"compact", "condensed", "contain", "content", "contents",
|
"content-box", "context-menu", "continuous", "copy", "cover", "crop",
|
||||||
"content-box", "context-menu", "continuous", "copy", "counter", "counters", "cover", "crop",
|
"cross", "crosshair", "currentcolor", "cursive", "dashed", "decimal",
|
||||||
"cross", "crosshair", "currentcolor", "cursive", "cyclic", "darken", "dashed", "decimal",
|
"decimal-leading-zero", "default", "default-button", "destination-atop",
|
||||||
"decimal-leading-zero", "default", "default-button", "dense", "destination-atop",
|
"destination-in", "destination-out", "destination-over", "devanagari",
|
||||||
"destination-in", "destination-out", "destination-over", "devanagari", "difference",
|
"disc", "discard", "document", "dot-dash", "dot-dot-dash", "dotted",
|
||||||
"disc", "discard", "disclosure-closed", "disclosure-open", "document",
|
"double", "down", "e-resize", "ease", "ease-in", "ease-in-out", "ease-out",
|
||||||
"dot-dash", "dot-dot-dash",
|
|
||||||
"dotted", "double", "down", "e-resize", "ease", "ease-in", "ease-in-out", "ease-out",
|
|
||||||
"element", "ellipse", "ellipsis", "embed", "end", "ethiopic", "ethiopic-abegede",
|
"element", "ellipse", "ellipsis", "embed", "end", "ethiopic", "ethiopic-abegede",
|
||||||
"ethiopic-abegede-am-et", "ethiopic-abegede-gez", "ethiopic-abegede-ti-er",
|
"ethiopic-abegede-am-et", "ethiopic-abegede-gez", "ethiopic-abegede-ti-er",
|
||||||
"ethiopic-abegede-ti-et", "ethiopic-halehame-aa-er",
|
"ethiopic-abegede-ti-et", "ethiopic-halehame-aa-er",
|
||||||
"ethiopic-halehame-aa-et", "ethiopic-halehame-am-et",
|
"ethiopic-halehame-aa-et", "ethiopic-halehame-am-et",
|
||||||
"ethiopic-halehame-gez", "ethiopic-halehame-om-et",
|
"ethiopic-halehame-gez", "ethiopic-halehame-om-et",
|
||||||
"ethiopic-halehame-sid-et", "ethiopic-halehame-so-et",
|
"ethiopic-halehame-sid-et", "ethiopic-halehame-so-et",
|
||||||
"ethiopic-halehame-ti-er", "ethiopic-halehame-ti-et", "ethiopic-halehame-tig",
|
"ethiopic-halehame-ti-er", "ethiopic-halehame-ti-et",
|
||||||
"ethiopic-numeric", "ew-resize", "exclusion", "expanded", "extends", "extra-condensed",
|
"ethiopic-halehame-tig", "ew-resize", "expanded", "extra-condensed",
|
||||||
"extra-expanded", "fantasy", "fast", "fill", "fixed", "flat", "flex", "flex-end", "flex-start", "footnotes",
|
"extra-expanded", "fantasy", "fast", "fill", "fixed", "flat", "footnotes",
|
||||||
"forwards", "from", "geometricPrecision", "georgian", "graytext", "grid", "groove",
|
"forwards", "from", "geometricPrecision", "georgian", "graytext", "groove",
|
||||||
"gujarati", "gurmukhi", "hand", "hangul", "hangul-consonant", "hard-light", "hebrew",
|
"gujarati", "gurmukhi", "hand", "hangul", "hangul-consonant", "hebrew",
|
||||||
"help", "hidden", "hide", "higher", "highlight", "highlighttext",
|
"help", "hidden", "hide", "higher", "highlight", "highlighttext",
|
||||||
"hiragana", "hiragana-iroha", "horizontal", "hsl", "hsla", "hue", "icon", "ignore",
|
"hiragana", "hiragana-iroha", "horizontal", "hsl", "hsla", "icon", "ignore",
|
||||||
"inactiveborder", "inactivecaption", "inactivecaptiontext", "infinite",
|
"inactiveborder", "inactivecaption", "inactivecaptiontext", "infinite",
|
||||||
"infobackground", "infotext", "inherit", "initial", "inline", "inline-axis",
|
"infobackground", "infotext", "inherit", "initial", "inline", "inline-axis",
|
||||||
"inline-block", "inline-flex", "inline-grid", "inline-table", "inset", "inside", "intrinsic", "invert",
|
"inline-block", "inline-table", "inset", "inside", "intrinsic", "invert",
|
||||||
"italic", "japanese-formal", "japanese-informal", "justify", "kannada",
|
"italic", "justify", "kannada", "katakana", "katakana-iroha", "keep-all", "khmer",
|
||||||
"katakana", "katakana-iroha", "keep-all", "khmer",
|
"landscape", "lao", "large", "larger", "left", "level", "lighter",
|
||||||
"korean-hangul-formal", "korean-hanja-formal", "korean-hanja-informal",
|
"line-through", "linear", "lines", "list-item", "listbox", "listitem",
|
||||||
"landscape", "lao", "large", "larger", "left", "level", "lighter", "lighten",
|
|
||||||
"line-through", "linear", "linear-gradient", "lines", "list-item", "listbox", "listitem",
|
|
||||||
"local", "logical", "loud", "lower", "lower-alpha", "lower-armenian",
|
"local", "logical", "loud", "lower", "lower-alpha", "lower-armenian",
|
||||||
"lower-greek", "lower-hexadecimal", "lower-latin", "lower-norwegian",
|
"lower-greek", "lower-hexadecimal", "lower-latin", "lower-norwegian",
|
||||||
"lower-roman", "lowercase", "ltr", "luminosity", "malayalam", "match", "matrix", "matrix3d",
|
"lower-roman", "lowercase", "ltr", "malayalam", "match",
|
||||||
"media-controls-background", "media-current-time-display",
|
"media-controls-background", "media-current-time-display",
|
||||||
"media-fullscreen-button", "media-mute-button", "media-play-button",
|
"media-fullscreen-button", "media-mute-button", "media-play-button",
|
||||||
"media-return-to-realtime-button", "media-rewind-button",
|
"media-return-to-realtime-button", "media-rewind-button",
|
||||||
@ -642,53 +547,49 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
"media-volume-slider-container", "media-volume-sliderthumb", "medium",
|
"media-volume-slider-container", "media-volume-sliderthumb", "medium",
|
||||||
"menu", "menulist", "menulist-button", "menulist-text",
|
"menu", "menulist", "menulist-button", "menulist-text",
|
||||||
"menulist-textfield", "menutext", "message-box", "middle", "min-intrinsic",
|
"menulist-textfield", "menutext", "message-box", "middle", "min-intrinsic",
|
||||||
"mix", "mongolian", "monospace", "move", "multiple", "multiply", "myanmar", "n-resize",
|
"mix", "mongolian", "monospace", "move", "multiple", "myanmar", "n-resize",
|
||||||
"narrower", "ne-resize", "nesw-resize", "no-close-quote", "no-drop",
|
"narrower", "ne-resize", "nesw-resize", "no-close-quote", "no-drop",
|
||||||
"no-open-quote", "no-repeat", "none", "normal", "not-allowed", "nowrap",
|
"no-open-quote", "no-repeat", "none", "normal", "not-allowed", "nowrap",
|
||||||
"ns-resize", "numbers", "numeric", "nw-resize", "nwse-resize", "oblique", "octal", "opacity", "open-quote",
|
"ns-resize", "nw-resize", "nwse-resize", "oblique", "octal", "open-quote",
|
||||||
"optimizeLegibility", "optimizeSpeed", "oriya", "oromo", "outset",
|
"optimizeLegibility", "optimizeSpeed", "oriya", "oromo", "outset",
|
||||||
"outside", "outside-shape", "overlay", "overline", "padding", "padding-box",
|
"outside", "outside-shape", "overlay", "overline", "padding", "padding-box",
|
||||||
"painted", "page", "paused", "persian", "perspective", "plus-darker", "plus-lighter",
|
"painted", "page", "paused", "persian", "plus-darker", "plus-lighter", "pointer",
|
||||||
"pointer", "polygon", "portrait", "pre", "pre-line", "pre-wrap", "preserve-3d",
|
"polygon", "portrait", "pre", "pre-line", "pre-wrap", "preserve-3d", "progress", "push-button",
|
||||||
"progress", "push-button", "radial-gradient", "radio", "read-only",
|
"radio", "read-only", "read-write", "read-write-plaintext-only", "rectangle", "region",
|
||||||
"read-write", "read-write-plaintext-only", "rectangle", "region",
|
"relative", "repeat", "repeat-x", "repeat-y", "reset", "reverse", "rgb", "rgba",
|
||||||
"relative", "repeat", "repeating-linear-gradient",
|
"ridge", "right", "round", "row-resize", "rtl", "run-in", "running",
|
||||||
"repeating-radial-gradient", "repeat-x", "repeat-y", "reset", "reverse",
|
"s-resize", "sans-serif", "scroll", "scrollbar", "se-resize", "searchfield",
|
||||||
"rgb", "rgba", "ridge", "right", "rotate", "rotate3d", "rotateX", "rotateY",
|
|
||||||
"rotateZ", "round", "row", "row-resize", "row-reverse", "rtl", "run-in", "running",
|
|
||||||
"s-resize", "sans-serif", "saturation", "scale", "scale3d", "scaleX", "scaleY", "scaleZ", "screen",
|
|
||||||
"scroll", "scrollbar", "scroll-position", "se-resize", "searchfield",
|
|
||||||
"searchfield-cancel-button", "searchfield-decoration",
|
"searchfield-cancel-button", "searchfield-decoration",
|
||||||
"searchfield-results-button", "searchfield-results-decoration", "self-start", "self-end",
|
"searchfield-results-button", "searchfield-results-decoration",
|
||||||
"semi-condensed", "semi-expanded", "separate", "serif", "show", "sidama",
|
"semi-condensed", "semi-expanded", "separate", "serif", "show", "sidama",
|
||||||
"simp-chinese-formal", "simp-chinese-informal", "single",
|
"single", "skip-white-space", "slide", "slider-horizontal",
|
||||||
"skew", "skewX", "skewY", "skip-white-space", "slide", "slider-horizontal",
|
|
||||||
"slider-vertical", "sliderthumb-horizontal", "sliderthumb-vertical", "slow",
|
"slider-vertical", "sliderthumb-horizontal", "sliderthumb-vertical", "slow",
|
||||||
"small", "small-caps", "small-caption", "smaller", "soft-light", "solid", "somali",
|
"small", "small-caps", "small-caption", "smaller", "solid", "somali",
|
||||||
"source-atop", "source-in", "source-out", "source-over", "space", "space-around", "space-between", "space-evenly", "spell-out", "square",
|
"source-atop", "source-in", "source-out", "source-over", "space", "square",
|
||||||
"square-button", "start", "static", "status-bar", "stretch", "stroke", "sub",
|
"square-button", "start", "static", "status-bar", "stretch", "stroke",
|
||||||
"subpixel-antialiased", "super", "sw-resize", "symbolic", "symbols", "system-ui", "table",
|
"sub", "subpixel-antialiased", "super", "sw-resize", "table",
|
||||||
"table-caption", "table-cell", "table-column", "table-column-group",
|
"table-caption", "table-cell", "table-column", "table-column-group",
|
||||||
"table-footer-group", "table-header-group", "table-row", "table-row-group",
|
"table-footer-group", "table-header-group", "table-row", "table-row-group",
|
||||||
"tamil",
|
|
||||||
"telugu", "text", "text-bottom", "text-top", "textarea", "textfield", "thai",
|
"telugu", "text", "text-bottom", "text-top", "textarea", "textfield", "thai",
|
||||||
"thick", "thin", "threeddarkshadow", "threedface", "threedhighlight",
|
"thick", "thin", "threeddarkshadow", "threedface", "threedhighlight",
|
||||||
"threedlightshadow", "threedshadow", "tibetan", "tigre", "tigrinya-er",
|
"threedlightshadow", "threedshadow", "tibetan", "tigre", "tigrinya-er",
|
||||||
"tigrinya-er-abegede", "tigrinya-et", "tigrinya-et-abegede", "to", "top",
|
"tigrinya-er-abegede", "tigrinya-et", "tigrinya-et-abegede", "to", "top",
|
||||||
"trad-chinese-formal", "trad-chinese-informal", "transform",
|
"transparent", "ultra-condensed", "ultra-expanded", "underline", "up",
|
||||||
"translate", "translate3d", "translateX", "translateY", "translateZ",
|
|
||||||
"transparent", "ultra-condensed", "ultra-expanded", "underline", "unset", "up",
|
|
||||||
"upper-alpha", "upper-armenian", "upper-greek", "upper-hexadecimal",
|
"upper-alpha", "upper-armenian", "upper-greek", "upper-hexadecimal",
|
||||||
"upper-latin", "upper-norwegian", "upper-roman", "uppercase", "urdu", "url",
|
"upper-latin", "upper-norwegian", "upper-roman", "uppercase", "urdu", "url",
|
||||||
"var", "vertical", "vertical-text", "visible", "visibleFill", "visiblePainted",
|
"vertical", "vertical-text", "visible", "visibleFill", "visiblePainted",
|
||||||
"visibleStroke", "visual", "w-resize", "wait", "wave", "wider",
|
"visibleStroke", "visual", "w-resize", "wait", "wave", "wider",
|
||||||
"window", "windowframe", "windowtext", "words", "wrap", "wrap-reverse", "x-large", "x-small", "xor",
|
"window", "windowframe", "windowtext", "x-large", "x-small", "xor",
|
||||||
"xx-large", "xx-small"
|
"xx-large", "xx-small"
|
||||||
], valueKeywords = keySet(valueKeywords_);
|
], valueKeywords = keySet(valueKeywords_);
|
||||||
|
|
||||||
var allWords = documentTypes_.concat(mediaTypes_).concat(mediaFeatures_).concat(mediaValueKeywords_)
|
var fontProperties_ = [
|
||||||
.concat(propertyKeywords_).concat(nonStandardPropertyKeywords_).concat(colorKeywords_)
|
"font-family", "src", "unicode-range", "font-variant", "font-feature-settings",
|
||||||
.concat(valueKeywords_);
|
"font-stretch", "font-weight", "font-style"
|
||||||
|
], fontProperties = keySet(fontProperties_);
|
||||||
|
|
||||||
|
var allWords = mediaTypes_.concat(mediaFeatures_).concat(propertyKeywords_)
|
||||||
|
.concat(nonStandardPropertyKeywords_).concat(colorKeywords_).concat(valueKeywords_);
|
||||||
CodeMirror.registerHelper("hintWords", "css", allWords);
|
CodeMirror.registerHelper("hintWords", "css", allWords);
|
||||||
|
|
||||||
function tokenCComment(stream, state) {
|
function tokenCComment(stream, state) {
|
||||||
@ -703,18 +604,30 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
return ["comment", "comment"];
|
return ["comment", "comment"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function tokenSGMLComment(stream, state) {
|
||||||
|
if (stream.skipTo("-->")) {
|
||||||
|
stream.match("-->");
|
||||||
|
state.tokenize = null;
|
||||||
|
} else {
|
||||||
|
stream.skipToEnd();
|
||||||
|
}
|
||||||
|
return ["comment", "comment"];
|
||||||
|
}
|
||||||
|
|
||||||
CodeMirror.defineMIME("text/css", {
|
CodeMirror.defineMIME("text/css", {
|
||||||
documentTypes: documentTypes,
|
|
||||||
mediaTypes: mediaTypes,
|
mediaTypes: mediaTypes,
|
||||||
mediaFeatures: mediaFeatures,
|
mediaFeatures: mediaFeatures,
|
||||||
mediaValueKeywords: mediaValueKeywords,
|
|
||||||
propertyKeywords: propertyKeywords,
|
propertyKeywords: propertyKeywords,
|
||||||
nonStandardPropertyKeywords: nonStandardPropertyKeywords,
|
nonStandardPropertyKeywords: nonStandardPropertyKeywords,
|
||||||
fontProperties: fontProperties,
|
|
||||||
counterDescriptors: counterDescriptors,
|
|
||||||
colorKeywords: colorKeywords,
|
colorKeywords: colorKeywords,
|
||||||
valueKeywords: valueKeywords,
|
valueKeywords: valueKeywords,
|
||||||
|
fontProperties: fontProperties,
|
||||||
tokenHooks: {
|
tokenHooks: {
|
||||||
|
"<": function(stream, state) {
|
||||||
|
if (!stream.match("!--")) return false;
|
||||||
|
state.tokenize = tokenSGMLComment;
|
||||||
|
return tokenSGMLComment(stream, state);
|
||||||
|
},
|
||||||
"/": function(stream, state) {
|
"/": function(stream, state) {
|
||||||
if (!stream.eat("*")) return false;
|
if (!stream.eat("*")) return false;
|
||||||
state.tokenize = tokenCComment;
|
state.tokenize = tokenCComment;
|
||||||
@ -727,14 +640,12 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
CodeMirror.defineMIME("text/x-scss", {
|
CodeMirror.defineMIME("text/x-scss", {
|
||||||
mediaTypes: mediaTypes,
|
mediaTypes: mediaTypes,
|
||||||
mediaFeatures: mediaFeatures,
|
mediaFeatures: mediaFeatures,
|
||||||
mediaValueKeywords: mediaValueKeywords,
|
|
||||||
propertyKeywords: propertyKeywords,
|
propertyKeywords: propertyKeywords,
|
||||||
nonStandardPropertyKeywords: nonStandardPropertyKeywords,
|
nonStandardPropertyKeywords: nonStandardPropertyKeywords,
|
||||||
colorKeywords: colorKeywords,
|
colorKeywords: colorKeywords,
|
||||||
valueKeywords: valueKeywords,
|
valueKeywords: valueKeywords,
|
||||||
fontProperties: fontProperties,
|
fontProperties: fontProperties,
|
||||||
allowNested: true,
|
allowNested: true,
|
||||||
lineComment: "//",
|
|
||||||
tokenHooks: {
|
tokenHooks: {
|
||||||
"/": function(stream, state) {
|
"/": function(stream, state) {
|
||||||
if (stream.eat("/")) {
|
if (stream.eat("/")) {
|
||||||
@ -748,8 +659,8 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
":": function(stream) {
|
":": function(stream) {
|
||||||
if (stream.match(/\s*\{/, false))
|
if (stream.match(/\s*\{/))
|
||||||
return [null, null]
|
return [null, "{"];
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
"$": function(stream) {
|
"$": function(stream) {
|
||||||
@ -770,14 +681,12 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
CodeMirror.defineMIME("text/x-less", {
|
CodeMirror.defineMIME("text/x-less", {
|
||||||
mediaTypes: mediaTypes,
|
mediaTypes: mediaTypes,
|
||||||
mediaFeatures: mediaFeatures,
|
mediaFeatures: mediaFeatures,
|
||||||
mediaValueKeywords: mediaValueKeywords,
|
|
||||||
propertyKeywords: propertyKeywords,
|
propertyKeywords: propertyKeywords,
|
||||||
nonStandardPropertyKeywords: nonStandardPropertyKeywords,
|
nonStandardPropertyKeywords: nonStandardPropertyKeywords,
|
||||||
colorKeywords: colorKeywords,
|
colorKeywords: colorKeywords,
|
||||||
valueKeywords: valueKeywords,
|
valueKeywords: valueKeywords,
|
||||||
fontProperties: fontProperties,
|
fontProperties: fontProperties,
|
||||||
allowNested: true,
|
allowNested: true,
|
||||||
lineComment: "//",
|
|
||||||
tokenHooks: {
|
tokenHooks: {
|
||||||
"/": function(stream, state) {
|
"/": function(stream, state) {
|
||||||
if (stream.eat("/")) {
|
if (stream.eat("/")) {
|
||||||
@ -791,8 +700,7 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@": function(stream) {
|
"@": function(stream) {
|
||||||
if (stream.eat("{")) return [null, "interpolation"];
|
if (stream.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/, false)) return false;
|
||||||
if (stream.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/i, false)) return false;
|
|
||||||
stream.eatWhile(/[\w\\\-]/);
|
stream.eatWhile(/[\w\\\-]/);
|
||||||
if (stream.match(/^\s*:/, false))
|
if (stream.match(/^\s*:/, false))
|
||||||
return ["variable-2", "variable-definition"];
|
return ["variable-2", "variable-definition"];
|
||||||
@ -806,26 +714,4 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
|
|||||||
helperType: "less"
|
helperType: "less"
|
||||||
});
|
});
|
||||||
|
|
||||||
CodeMirror.defineMIME("text/x-gss", {
|
|
||||||
documentTypes: documentTypes,
|
|
||||||
mediaTypes: mediaTypes,
|
|
||||||
mediaFeatures: mediaFeatures,
|
|
||||||
propertyKeywords: propertyKeywords,
|
|
||||||
nonStandardPropertyKeywords: nonStandardPropertyKeywords,
|
|
||||||
fontProperties: fontProperties,
|
|
||||||
counterDescriptors: counterDescriptors,
|
|
||||||
colorKeywords: colorKeywords,
|
|
||||||
valueKeywords: valueKeywords,
|
|
||||||
supportsAtComponent: true,
|
|
||||||
tokenHooks: {
|
|
||||||
"/": function(stream, state) {
|
|
||||||
if (!stream.eat("*")) return false;
|
|
||||||
state.tokenize = tokenCComment;
|
|
||||||
return tokenCComment(stream, state);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
name: "css",
|
|
||||||
helperType: "gss"
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
86
core/vendor/codemirror/mode/htmlembedded/htmlembedded.js
vendored
Normal file
86
core/vendor/codemirror/mode/htmlembedded/htmlembedded.js
vendored
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||||
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||||
|
|
||||||
|
(function(mod) {
|
||||||
|
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
||||||
|
mod(require("../../lib/codemirror"), require("../htmlmixed/htmlmixed"));
|
||||||
|
else if (typeof define == "function" && define.amd) // AMD
|
||||||
|
define(["../../lib/codemirror", "../htmlmixed/htmlmixed"], mod);
|
||||||
|
else // Plain browser env
|
||||||
|
mod(CodeMirror);
|
||||||
|
})(function(CodeMirror) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
CodeMirror.defineMode("htmlembedded", function(config, parserConfig) {
|
||||||
|
|
||||||
|
//config settings
|
||||||
|
var scriptStartRegex = parserConfig.scriptStartRegex || /^<%/i,
|
||||||
|
scriptEndRegex = parserConfig.scriptEndRegex || /^%>/i;
|
||||||
|
|
||||||
|
//inner modes
|
||||||
|
var scriptingMode, htmlMixedMode;
|
||||||
|
|
||||||
|
//tokenizer when in html mode
|
||||||
|
function htmlDispatch(stream, state) {
|
||||||
|
if (stream.match(scriptStartRegex, false)) {
|
||||||
|
state.token=scriptingDispatch;
|
||||||
|
return scriptingMode.token(stream, state.scriptState);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return htmlMixedMode.token(stream, state.htmlState);
|
||||||
|
}
|
||||||
|
|
||||||
|
//tokenizer when in scripting mode
|
||||||
|
function scriptingDispatch(stream, state) {
|
||||||
|
if (stream.match(scriptEndRegex, false)) {
|
||||||
|
state.token=htmlDispatch;
|
||||||
|
return htmlMixedMode.token(stream, state.htmlState);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return scriptingMode.token(stream, state.scriptState);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return {
|
||||||
|
startState: function() {
|
||||||
|
scriptingMode = scriptingMode || CodeMirror.getMode(config, parserConfig.scriptingModeSpec);
|
||||||
|
htmlMixedMode = htmlMixedMode || CodeMirror.getMode(config, "htmlmixed");
|
||||||
|
return {
|
||||||
|
token : parserConfig.startOpen ? scriptingDispatch : htmlDispatch,
|
||||||
|
htmlState : CodeMirror.startState(htmlMixedMode),
|
||||||
|
scriptState : CodeMirror.startState(scriptingMode)
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
token: function(stream, state) {
|
||||||
|
return state.token(stream, state);
|
||||||
|
},
|
||||||
|
|
||||||
|
indent: function(state, textAfter) {
|
||||||
|
if (state.token == htmlDispatch)
|
||||||
|
return htmlMixedMode.indent(state.htmlState, textAfter);
|
||||||
|
else if (scriptingMode.indent)
|
||||||
|
return scriptingMode.indent(state.scriptState, textAfter);
|
||||||
|
},
|
||||||
|
|
||||||
|
copyState: function(state) {
|
||||||
|
return {
|
||||||
|
token : state.token,
|
||||||
|
htmlState : CodeMirror.copyState(htmlMixedMode, state.htmlState),
|
||||||
|
scriptState : CodeMirror.copyState(scriptingMode, state.scriptState)
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
innerMode: function(state) {
|
||||||
|
if (state.token == scriptingDispatch) return {state: state.scriptState, mode: scriptingMode};
|
||||||
|
else return {state: state.htmlState, mode: htmlMixedMode};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}, "htmlmixed");
|
||||||
|
|
||||||
|
CodeMirror.defineMIME("application/x-ejs", { name: "htmlembedded", scriptingModeSpec:"javascript"});
|
||||||
|
CodeMirror.defineMIME("application/x-aspx", { name: "htmlembedded", scriptingModeSpec:"text/x-csharp"});
|
||||||
|
CodeMirror.defineMIME("application/x-jsp", { name: "htmlembedded", scriptingModeSpec:"text/x-java"});
|
||||||
|
CodeMirror.defineMIME("application/x-erb", { name: "htmlembedded", scriptingModeSpec:"ruby"});
|
||||||
|
|
||||||
|
});
|
121
core/vendor/codemirror/mode/htmlmixed/htmlmixed.js
vendored
Normal file
121
core/vendor/codemirror/mode/htmlmixed/htmlmixed.js
vendored
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||||
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||||
|
|
||||||
|
(function(mod) {
|
||||||
|
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
||||||
|
mod(require("../../lib/codemirror"), require("../xml/xml"), require("../javascript/javascript"), require("../css/css"));
|
||||||
|
else if (typeof define == "function" && define.amd) // AMD
|
||||||
|
define(["../../lib/codemirror", "../xml/xml", "../javascript/javascript", "../css/css"], mod);
|
||||||
|
else // Plain browser env
|
||||||
|
mod(CodeMirror);
|
||||||
|
})(function(CodeMirror) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
CodeMirror.defineMode("htmlmixed", function(config, parserConfig) {
|
||||||
|
var htmlMode = CodeMirror.getMode(config, {name: "xml",
|
||||||
|
htmlMode: true,
|
||||||
|
multilineTagIndentFactor: parserConfig.multilineTagIndentFactor,
|
||||||
|
multilineTagIndentPastTag: parserConfig.multilineTagIndentPastTag});
|
||||||
|
var cssMode = CodeMirror.getMode(config, "css");
|
||||||
|
|
||||||
|
var scriptTypes = [], scriptTypesConf = parserConfig && parserConfig.scriptTypes;
|
||||||
|
scriptTypes.push({matches: /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^$/i,
|
||||||
|
mode: CodeMirror.getMode(config, "javascript")});
|
||||||
|
if (scriptTypesConf) for (var i = 0; i < scriptTypesConf.length; ++i) {
|
||||||
|
var conf = scriptTypesConf[i];
|
||||||
|
scriptTypes.push({matches: conf.matches, mode: conf.mode && CodeMirror.getMode(config, conf.mode)});
|
||||||
|
}
|
||||||
|
scriptTypes.push({matches: /./,
|
||||||
|
mode: CodeMirror.getMode(config, "text/plain")});
|
||||||
|
|
||||||
|
function html(stream, state) {
|
||||||
|
var tagName = state.htmlState.tagName;
|
||||||
|
if (tagName) tagName = tagName.toLowerCase();
|
||||||
|
var style = htmlMode.token(stream, state.htmlState);
|
||||||
|
if (tagName == "script" && /\btag\b/.test(style) && stream.current() == ">") {
|
||||||
|
// Script block: mode to change to depends on type attribute
|
||||||
|
var scriptType = stream.string.slice(Math.max(0, stream.pos - 100), stream.pos).match(/\btype\s*=\s*("[^"]+"|'[^']+'|\S+)[^<]*$/i);
|
||||||
|
scriptType = scriptType ? scriptType[1] : "";
|
||||||
|
if (scriptType && /[\"\']/.test(scriptType.charAt(0))) scriptType = scriptType.slice(1, scriptType.length - 1);
|
||||||
|
for (var i = 0; i < scriptTypes.length; ++i) {
|
||||||
|
var tp = scriptTypes[i];
|
||||||
|
if (typeof tp.matches == "string" ? scriptType == tp.matches : tp.matches.test(scriptType)) {
|
||||||
|
if (tp.mode) {
|
||||||
|
state.token = script;
|
||||||
|
state.localMode = tp.mode;
|
||||||
|
state.localState = tp.mode.startState && tp.mode.startState(htmlMode.indent(state.htmlState, ""));
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (tagName == "style" && /\btag\b/.test(style) && stream.current() == ">") {
|
||||||
|
state.token = css;
|
||||||
|
state.localMode = cssMode;
|
||||||
|
state.localState = cssMode.startState(htmlMode.indent(state.htmlState, ""));
|
||||||
|
}
|
||||||
|
return style;
|
||||||
|
}
|
||||||
|
function maybeBackup(stream, pat, style) {
|
||||||
|
var cur = stream.current();
|
||||||
|
var close = cur.search(pat), m;
|
||||||
|
if (close > -1) stream.backUp(cur.length - close);
|
||||||
|
else if (m = cur.match(/<\/?$/)) {
|
||||||
|
stream.backUp(cur.length);
|
||||||
|
if (!stream.match(pat, false)) stream.match(cur);
|
||||||
|
}
|
||||||
|
return style;
|
||||||
|
}
|
||||||
|
function script(stream, state) {
|
||||||
|
if (stream.match(/^<\/\s*script\s*>/i, false)) {
|
||||||
|
state.token = html;
|
||||||
|
state.localState = state.localMode = null;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return maybeBackup(stream, /<\/\s*script\s*>/,
|
||||||
|
state.localMode.token(stream, state.localState));
|
||||||
|
}
|
||||||
|
function css(stream, state) {
|
||||||
|
if (stream.match(/^<\/\s*style\s*>/i, false)) {
|
||||||
|
state.token = html;
|
||||||
|
state.localState = state.localMode = null;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return maybeBackup(stream, /<\/\s*style\s*>/,
|
||||||
|
cssMode.token(stream, state.localState));
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
startState: function() {
|
||||||
|
var state = htmlMode.startState();
|
||||||
|
return {token: html, localMode: null, localState: null, htmlState: state};
|
||||||
|
},
|
||||||
|
|
||||||
|
copyState: function(state) {
|
||||||
|
if (state.localState)
|
||||||
|
var local = CodeMirror.copyState(state.localMode, state.localState);
|
||||||
|
return {token: state.token, localMode: state.localMode, localState: local,
|
||||||
|
htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};
|
||||||
|
},
|
||||||
|
|
||||||
|
token: function(stream, state) {
|
||||||
|
return state.token(stream, state);
|
||||||
|
},
|
||||||
|
|
||||||
|
indent: function(state, textAfter) {
|
||||||
|
if (!state.localMode || /^\s*<\//.test(textAfter))
|
||||||
|
return htmlMode.indent(state.htmlState, textAfter);
|
||||||
|
else if (state.localMode.indent)
|
||||||
|
return state.localMode.indent(state.localState, textAfter);
|
||||||
|
else
|
||||||
|
return CodeMirror.Pass;
|
||||||
|
},
|
||||||
|
|
||||||
|
innerMode: function(state) {
|
||||||
|
return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}, "xml", "javascript", "css");
|
||||||
|
|
||||||
|
CodeMirror.defineMIME("text/html", "htmlmixed");
|
||||||
|
|
||||||
|
});
|
560
core/vendor/codemirror/mode/javascript/javascript.js
vendored
560
core/vendor/codemirror/mode/javascript/javascript.js
vendored
@ -1,5 +1,7 @@
|
|||||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||||
|
|
||||||
|
// TODO actually recognize syntax of TypeScript constructs
|
||||||
|
|
||||||
(function(mod) {
|
(function(mod) {
|
||||||
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
||||||
@ -23,24 +25,49 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
|
|
||||||
var keywords = function(){
|
var keywords = function(){
|
||||||
function kw(type) {return {type: type, style: "keyword"};}
|
function kw(type) {return {type: type, style: "keyword"};}
|
||||||
var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"), D = kw("keyword d");
|
var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c");
|
||||||
var operator = kw("operator"), atom = {type: "atom", style: "atom"};
|
var operator = kw("operator"), atom = {type: "atom", style: "atom"};
|
||||||
|
|
||||||
return {
|
var jsKeywords = {
|
||||||
"if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
|
"if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
|
||||||
"return": D, "break": D, "continue": D, "new": kw("new"), "delete": C, "void": C, "throw": C,
|
"return": C, "break": C, "continue": C, "new": C, "delete": C, "throw": C, "debugger": C,
|
||||||
"debugger": kw("debugger"), "var": kw("var"), "const": kw("var"), "let": kw("var"),
|
"var": kw("var"), "const": kw("var"), "let": kw("var"),
|
||||||
"function": kw("function"), "catch": kw("catch"),
|
"function": kw("function"), "catch": kw("catch"),
|
||||||
"for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
|
"for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
|
||||||
"in": operator, "typeof": operator, "instanceof": operator,
|
"in": operator, "typeof": operator, "instanceof": operator,
|
||||||
"true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom,
|
"true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom,
|
||||||
"this": kw("this"), "class": kw("class"), "super": kw("atom"),
|
"this": kw("this"), "module": kw("module"), "class": kw("class"), "super": kw("atom"),
|
||||||
"yield": C, "export": kw("export"), "import": kw("import"), "extends": C,
|
"yield": C, "export": kw("export"), "import": kw("import"), "extends": C
|
||||||
"await": C
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Extend the 'normal' keywords with the TypeScript language extensions
|
||||||
|
if (isTS) {
|
||||||
|
var type = {type: "variable", style: "variable-3"};
|
||||||
|
var tsKeywords = {
|
||||||
|
// object-like things
|
||||||
|
"interface": kw("interface"),
|
||||||
|
"extends": kw("extends"),
|
||||||
|
"constructor": kw("constructor"),
|
||||||
|
|
||||||
|
// scope modifiers
|
||||||
|
"public": kw("public"),
|
||||||
|
"private": kw("private"),
|
||||||
|
"protected": kw("protected"),
|
||||||
|
"static": kw("static"),
|
||||||
|
|
||||||
|
// types
|
||||||
|
"string": type, "number": type, "bool": type, "any": type
|
||||||
|
};
|
||||||
|
|
||||||
|
for (var attr in tsKeywords) {
|
||||||
|
jsKeywords[attr] = tsKeywords[attr];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return jsKeywords;
|
||||||
}();
|
}();
|
||||||
|
|
||||||
var isOperatorChar = /[+\-*&%=<>!?|~^@]/;
|
var isOperatorChar = /[+\-*&%=<>!?|~^]/;
|
||||||
var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;
|
var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;
|
||||||
|
|
||||||
function readRegexp(stream) {
|
function readRegexp(stream) {
|
||||||
@ -67,7 +94,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
if (ch == '"' || ch == "'") {
|
if (ch == '"' || ch == "'") {
|
||||||
state.tokenize = tokenString(ch);
|
state.tokenize = tokenString(ch);
|
||||||
return state.tokenize(stream, state);
|
return state.tokenize(stream, state);
|
||||||
} else if (ch == "." && stream.match(/^\d[\d_]*(?:[eE][+\-]?[\d_]+)?/)) {
|
} else if (ch == "." && stream.match(/^\d+(?:[eE][+\-]?\d+)?/)) {
|
||||||
return ret("number", "number");
|
return ret("number", "number");
|
||||||
} else if (ch == "." && stream.match("..")) {
|
} else if (ch == "." && stream.match("..")) {
|
||||||
return ret("spread", "meta");
|
return ret("spread", "meta");
|
||||||
@ -75,10 +102,11 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
return ret(ch);
|
return ret(ch);
|
||||||
} else if (ch == "=" && stream.eat(">")) {
|
} else if (ch == "=" && stream.eat(">")) {
|
||||||
return ret("=>", "operator");
|
return ret("=>", "operator");
|
||||||
} else if (ch == "0" && stream.match(/^(?:x[\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/)) {
|
} else if (ch == "0" && stream.eat(/x/i)) {
|
||||||
|
stream.eatWhile(/[\da-f]/i);
|
||||||
return ret("number", "number");
|
return ret("number", "number");
|
||||||
} else if (/\d/.test(ch)) {
|
} else if (/\d/.test(ch)) {
|
||||||
stream.match(/^[\d_]*(?:n|(?:\.[\d_]*)?(?:[eE][+\-]?[\d_]+)?)?/);
|
stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/);
|
||||||
return ret("number", "number");
|
return ret("number", "number");
|
||||||
} else if (ch == "/") {
|
} else if (ch == "/") {
|
||||||
if (stream.eat("*")) {
|
if (stream.eat("*")) {
|
||||||
@ -87,12 +115,13 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
} else if (stream.eat("/")) {
|
} else if (stream.eat("/")) {
|
||||||
stream.skipToEnd();
|
stream.skipToEnd();
|
||||||
return ret("comment", "comment");
|
return ret("comment", "comment");
|
||||||
} else if (expressionAllowed(stream, state, 1)) {
|
} else if (state.lastType == "operator" || state.lastType == "keyword c" ||
|
||||||
|
state.lastType == "sof" || /^[\[{}\(,;:]$/.test(state.lastType)) {
|
||||||
readRegexp(stream);
|
readRegexp(stream);
|
||||||
stream.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/);
|
stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla
|
||||||
return ret("regexp", "string-2");
|
return ret("regexp", "string-2");
|
||||||
} else {
|
} else {
|
||||||
stream.eat("=");
|
stream.eatWhile(isOperatorChar);
|
||||||
return ret("operator", "operator", stream.current());
|
return ret("operator", "operator", stream.current());
|
||||||
}
|
}
|
||||||
} else if (ch == "`") {
|
} else if (ch == "`") {
|
||||||
@ -101,31 +130,14 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
} else if (ch == "#") {
|
} else if (ch == "#") {
|
||||||
stream.skipToEnd();
|
stream.skipToEnd();
|
||||||
return ret("error", "error");
|
return ret("error", "error");
|
||||||
} else if (ch == "<" && stream.match("!--") || ch == "-" && stream.match("->")) {
|
|
||||||
stream.skipToEnd()
|
|
||||||
return ret("comment", "comment")
|
|
||||||
} else if (isOperatorChar.test(ch)) {
|
} else if (isOperatorChar.test(ch)) {
|
||||||
if (ch != ">" || !state.lexical || state.lexical.type != ">") {
|
stream.eatWhile(isOperatorChar);
|
||||||
if (stream.eat("=")) {
|
|
||||||
if (ch == "!" || ch == "=") stream.eat("=")
|
|
||||||
} else if (/[<>*+\-]/.test(ch)) {
|
|
||||||
stream.eat(ch)
|
|
||||||
if (ch == ">") stream.eat(ch)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ret("operator", "operator", stream.current());
|
return ret("operator", "operator", stream.current());
|
||||||
} else if (wordRE.test(ch)) {
|
} else if (wordRE.test(ch)) {
|
||||||
stream.eatWhile(wordRE);
|
stream.eatWhile(wordRE);
|
||||||
var word = stream.current()
|
var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];
|
||||||
if (state.lastType != ".") {
|
return (known && state.lastType != ".") ? ret(known.type, known.style, word) :
|
||||||
if (keywords.propertyIsEnumerable(word)) {
|
ret("variable", "variable", word);
|
||||||
var kw = keywords[word]
|
|
||||||
return ret(kw.type, kw.style, word)
|
|
||||||
}
|
|
||||||
if (word == "async" && stream.match(/^(\s|\/\*.*?\*\/)*[\[\(\w]/, false))
|
|
||||||
return ret("async", "keyword", word)
|
|
||||||
}
|
|
||||||
return ret("variable", "variable", word)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -182,28 +194,17 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
var arrow = stream.string.indexOf("=>", stream.start);
|
var arrow = stream.string.indexOf("=>", stream.start);
|
||||||
if (arrow < 0) return;
|
if (arrow < 0) return;
|
||||||
|
|
||||||
if (isTS) { // Try to skip TypeScript return type declarations after the arguments
|
|
||||||
var m = /:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(stream.string.slice(stream.start, arrow))
|
|
||||||
if (m) arrow = m.index
|
|
||||||
}
|
|
||||||
|
|
||||||
var depth = 0, sawSomething = false;
|
var depth = 0, sawSomething = false;
|
||||||
for (var pos = arrow - 1; pos >= 0; --pos) {
|
for (var pos = arrow - 1; pos >= 0; --pos) {
|
||||||
var ch = stream.string.charAt(pos);
|
var ch = stream.string.charAt(pos);
|
||||||
var bracket = brackets.indexOf(ch);
|
var bracket = brackets.indexOf(ch);
|
||||||
if (bracket >= 0 && bracket < 3) {
|
if (bracket >= 0 && bracket < 3) {
|
||||||
if (!depth) { ++pos; break; }
|
if (!depth) { ++pos; break; }
|
||||||
if (--depth == 0) { if (ch == "(") sawSomething = true; break; }
|
if (--depth == 0) break;
|
||||||
} else if (bracket >= 3 && bracket < 6) {
|
} else if (bracket >= 3 && bracket < 6) {
|
||||||
++depth;
|
++depth;
|
||||||
} else if (wordRE.test(ch)) {
|
} else if (wordRE.test(ch)) {
|
||||||
sawSomething = true;
|
sawSomething = true;
|
||||||
} else if (/["'\/`]/.test(ch)) {
|
|
||||||
for (;; --pos) {
|
|
||||||
if (pos == 0) return
|
|
||||||
var next = stream.string.charAt(pos - 1)
|
|
||||||
if (next == ch && stream.string.charAt(pos - 2) != "\\") { pos--; break }
|
|
||||||
}
|
|
||||||
} else if (sawSomething && !depth) {
|
} else if (sawSomething && !depth) {
|
||||||
++pos;
|
++pos;
|
||||||
break;
|
break;
|
||||||
@ -265,68 +266,35 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
pass.apply(null, arguments);
|
pass.apply(null, arguments);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
function inList(name, list) {
|
function register(varname) {
|
||||||
for (var v = list; v; v = v.next) if (v.name == name) return true
|
function inList(list) {
|
||||||
|
for (var v = list; v; v = v.next)
|
||||||
|
if (v.name == varname) return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
function register(varname) {
|
|
||||||
var state = cx.state;
|
var state = cx.state;
|
||||||
cx.marked = "def";
|
|
||||||
if (state.context) {
|
if (state.context) {
|
||||||
if (state.lexical.info == "var" && state.context && state.context.block) {
|
cx.marked = "def";
|
||||||
// FIXME function decls are also not block scoped
|
if (inList(state.localVars)) return;
|
||||||
var newContext = registerVarScoped(varname, state.context)
|
state.localVars = {name: varname, next: state.localVars};
|
||||||
if (newContext != null) {
|
|
||||||
state.context = newContext
|
|
||||||
return
|
|
||||||
}
|
|
||||||
} else if (!inList(varname, state.localVars)) {
|
|
||||||
state.localVars = new Var(varname, state.localVars)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Fall through means this is global
|
|
||||||
if (parserConfig.globalVars && !inList(varname, state.globalVars))
|
|
||||||
state.globalVars = new Var(varname, state.globalVars)
|
|
||||||
}
|
|
||||||
function registerVarScoped(varname, context) {
|
|
||||||
if (!context) {
|
|
||||||
return null
|
|
||||||
} else if (context.block) {
|
|
||||||
var inner = registerVarScoped(varname, context.prev)
|
|
||||||
if (!inner) return null
|
|
||||||
if (inner == context.prev) return context
|
|
||||||
return new Context(inner, context.vars, true)
|
|
||||||
} else if (inList(varname, context.vars)) {
|
|
||||||
return context
|
|
||||||
} else {
|
} else {
|
||||||
return new Context(context.prev, new Var(varname, context.vars), false)
|
if (inList(state.globalVars)) return;
|
||||||
|
if (parserConfig.globalVars)
|
||||||
|
state.globalVars = {name: varname, next: state.globalVars};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function isModifier(name) {
|
|
||||||
return name == "public" || name == "private" || name == "protected" || name == "abstract" || name == "readonly"
|
|
||||||
}
|
|
||||||
|
|
||||||
// Combinators
|
// Combinators
|
||||||
|
|
||||||
function Context(prev, vars, block) { this.prev = prev; this.vars = vars; this.block = block }
|
var defaultVars = {name: "this", next: {name: "arguments"}};
|
||||||
function Var(name, next) { this.name = name; this.next = next }
|
|
||||||
|
|
||||||
var defaultVars = new Var("this", new Var("arguments", null))
|
|
||||||
function pushcontext() {
|
function pushcontext() {
|
||||||
cx.state.context = new Context(cx.state.context, cx.state.localVars, false)
|
cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};
|
||||||
cx.state.localVars = defaultVars
|
cx.state.localVars = defaultVars;
|
||||||
}
|
|
||||||
function pushblockcontext() {
|
|
||||||
cx.state.context = new Context(cx.state.context, cx.state.localVars, true)
|
|
||||||
cx.state.localVars = null
|
|
||||||
}
|
}
|
||||||
function popcontext() {
|
function popcontext() {
|
||||||
cx.state.localVars = cx.state.context.vars
|
cx.state.localVars = cx.state.context.vars;
|
||||||
cx.state.context = cx.state.context.prev
|
cx.state.context = cx.state.context.prev;
|
||||||
}
|
}
|
||||||
popcontext.lex = true
|
|
||||||
function pushlex(type, info) {
|
function pushlex(type, info) {
|
||||||
var result = function() {
|
var result = function() {
|
||||||
var state = cx.state, indent = state.indented;
|
var state = cx.state, indent = state.indented;
|
||||||
@ -351,102 +319,73 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
function expect(wanted) {
|
function expect(wanted) {
|
||||||
function exp(type) {
|
function exp(type) {
|
||||||
if (type == wanted) return cont();
|
if (type == wanted) return cont();
|
||||||
else if (wanted == ";" || type == "}" || type == ")" || type == "]") return pass();
|
else if (wanted == ";") return pass();
|
||||||
else return cont(exp);
|
else return cont(exp);
|
||||||
};
|
};
|
||||||
return exp;
|
return exp;
|
||||||
}
|
}
|
||||||
|
|
||||||
function statement(type, value) {
|
function statement(type, value) {
|
||||||
if (type == "var") return cont(pushlex("vardef", value), vardef, expect(";"), poplex);
|
if (type == "var") return cont(pushlex("vardef", value.length), vardef, expect(";"), poplex);
|
||||||
if (type == "keyword a") return cont(pushlex("form"), parenExpr, statement, poplex);
|
if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex);
|
||||||
if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
|
if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
|
||||||
if (type == "keyword d") return cx.stream.match(/^\s*$/, false) ? cont() : cont(pushlex("stat"), maybeexpression, expect(";"), poplex);
|
if (type == "{") return cont(pushlex("}"), block, poplex);
|
||||||
if (type == "debugger") return cont(expect(";"));
|
|
||||||
if (type == "{") return cont(pushlex("}"), pushblockcontext, block, poplex, popcontext);
|
|
||||||
if (type == ";") return cont();
|
if (type == ";") return cont();
|
||||||
if (type == "if") {
|
if (type == "if") {
|
||||||
if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex)
|
if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex)
|
||||||
cx.state.cc.pop()();
|
cx.state.cc.pop()();
|
||||||
return cont(pushlex("form"), parenExpr, statement, poplex, maybeelse);
|
return cont(pushlex("form"), expression, statement, poplex, maybeelse);
|
||||||
}
|
}
|
||||||
if (type == "function") return cont(functiondef);
|
if (type == "function") return cont(functiondef);
|
||||||
if (type == "for") return cont(pushlex("form"), forspec, statement, poplex);
|
if (type == "for") return cont(pushlex("form"), forspec, statement, poplex);
|
||||||
if (type == "class" || (isTS && value == "interface")) {
|
if (type == "variable") return cont(pushlex("stat"), maybelabel);
|
||||||
cx.marked = "keyword"
|
if (type == "switch") return cont(pushlex("form"), expression, pushlex("}", "switch"), expect("{"),
|
||||||
return cont(pushlex("form", type == "class" ? type : value), className, poplex)
|
block, poplex, poplex);
|
||||||
}
|
|
||||||
if (type == "variable") {
|
|
||||||
if (isTS && value == "declare") {
|
|
||||||
cx.marked = "keyword"
|
|
||||||
return cont(statement)
|
|
||||||
} else if (isTS && (value == "module" || value == "enum" || value == "type") && cx.stream.match(/^\s*\w/, false)) {
|
|
||||||
cx.marked = "keyword"
|
|
||||||
if (value == "enum") return cont(enumdef);
|
|
||||||
else if (value == "type") return cont(typename, expect("operator"), typeexpr, expect(";"));
|
|
||||||
else return cont(pushlex("form"), pattern, expect("{"), pushlex("}"), block, poplex, poplex)
|
|
||||||
} else if (isTS && value == "namespace") {
|
|
||||||
cx.marked = "keyword"
|
|
||||||
return cont(pushlex("form"), expression, statement, poplex)
|
|
||||||
} else if (isTS && value == "abstract") {
|
|
||||||
cx.marked = "keyword"
|
|
||||||
return cont(statement)
|
|
||||||
} else {
|
|
||||||
return cont(pushlex("stat"), maybelabel);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (type == "switch") return cont(pushlex("form"), parenExpr, expect("{"), pushlex("}", "switch"), pushblockcontext,
|
|
||||||
block, poplex, poplex, popcontext);
|
|
||||||
if (type == "case") return cont(expression, expect(":"));
|
if (type == "case") return cont(expression, expect(":"));
|
||||||
if (type == "default") return cont(expect(":"));
|
if (type == "default") return cont(expect(":"));
|
||||||
if (type == "catch") return cont(pushlex("form"), pushcontext, maybeCatchBinding, statement, poplex, popcontext);
|
if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"),
|
||||||
if (type == "export") return cont(pushlex("stat"), afterExport, poplex);
|
statement, poplex, popcontext);
|
||||||
if (type == "import") return cont(pushlex("stat"), afterImport, poplex);
|
if (type == "module") return cont(pushlex("form"), pushcontext, afterModule, popcontext, poplex);
|
||||||
if (type == "async") return cont(statement)
|
if (type == "class") return cont(pushlex("form"), className, poplex);
|
||||||
if (value == "@") return cont(expression, statement)
|
if (type == "export") return cont(pushlex("form"), afterExport, poplex);
|
||||||
|
if (type == "import") return cont(pushlex("form"), afterImport, poplex);
|
||||||
return pass(pushlex("stat"), expression, expect(";"), poplex);
|
return pass(pushlex("stat"), expression, expect(";"), poplex);
|
||||||
}
|
}
|
||||||
function maybeCatchBinding(type) {
|
function expression(type) {
|
||||||
if (type == "(") return cont(funarg, expect(")"))
|
return expressionInner(type, false);
|
||||||
}
|
}
|
||||||
function expression(type, value) {
|
function expressionNoComma(type) {
|
||||||
return expressionInner(type, value, false);
|
return expressionInner(type, true);
|
||||||
}
|
}
|
||||||
function expressionNoComma(type, value) {
|
function expressionInner(type, noComma) {
|
||||||
return expressionInner(type, value, true);
|
|
||||||
}
|
|
||||||
function parenExpr(type) {
|
|
||||||
if (type != "(") return pass()
|
|
||||||
return cont(pushlex(")"), expression, expect(")"), poplex)
|
|
||||||
}
|
|
||||||
function expressionInner(type, value, noComma) {
|
|
||||||
if (cx.state.fatArrowAt == cx.stream.start) {
|
if (cx.state.fatArrowAt == cx.stream.start) {
|
||||||
var body = noComma ? arrowBodyNoComma : arrowBody;
|
var body = noComma ? arrowBodyNoComma : arrowBody;
|
||||||
if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, expect("=>"), body, popcontext);
|
if (type == "(") return cont(pushcontext, pushlex(")"), commasep(pattern, ")"), poplex, expect("=>"), body, popcontext);
|
||||||
else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext);
|
else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext);
|
||||||
}
|
}
|
||||||
|
|
||||||
var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;
|
var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;
|
||||||
if (atomicTypes.hasOwnProperty(type)) return cont(maybeop);
|
if (atomicTypes.hasOwnProperty(type)) return cont(maybeop);
|
||||||
if (type == "function") return cont(functiondef, maybeop);
|
if (type == "function") return cont(functiondef, maybeop);
|
||||||
if (type == "class" || (isTS && value == "interface")) { cx.marked = "keyword"; return cont(pushlex("form"), classExpression, poplex); }
|
if (type == "keyword c") return cont(noComma ? maybeexpressionNoComma : maybeexpression);
|
||||||
if (type == "keyword c" || type == "async") return cont(noComma ? expressionNoComma : expression);
|
if (type == "(") return cont(pushlex(")"), maybeexpression, comprehension, expect(")"), poplex, maybeop);
|
||||||
if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeop);
|
|
||||||
if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression);
|
if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression);
|
||||||
if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop);
|
if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop);
|
||||||
if (type == "{") return contCommasep(objprop, "}", null, maybeop);
|
if (type == "{") return contCommasep(objprop, "}", null, maybeop);
|
||||||
if (type == "quasi") return pass(quasi, maybeop);
|
if (type == "quasi") { return pass(quasi, maybeop); }
|
||||||
if (type == "new") return cont(maybeTarget(noComma));
|
|
||||||
if (type == "import") return cont(expression);
|
|
||||||
return cont();
|
return cont();
|
||||||
}
|
}
|
||||||
function maybeexpression(type) {
|
function maybeexpression(type) {
|
||||||
if (type.match(/[;\}\)\],]/)) return pass();
|
if (type.match(/[;\}\)\],]/)) return pass();
|
||||||
return pass(expression);
|
return pass(expression);
|
||||||
}
|
}
|
||||||
|
function maybeexpressionNoComma(type) {
|
||||||
|
if (type.match(/[;\}\)\],]/)) return pass();
|
||||||
|
return pass(expressionNoComma);
|
||||||
|
}
|
||||||
|
|
||||||
function maybeoperatorComma(type, value) {
|
function maybeoperatorComma(type, value) {
|
||||||
if (type == ",") return cont(maybeexpression);
|
if (type == ",") return cont(expression);
|
||||||
return maybeoperatorNoComma(type, value, false);
|
return maybeoperatorNoComma(type, value, false);
|
||||||
}
|
}
|
||||||
function maybeoperatorNoComma(type, value, noComma) {
|
function maybeoperatorNoComma(type, value, noComma) {
|
||||||
@ -454,9 +393,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
var expr = noComma == false ? expression : expressionNoComma;
|
var expr = noComma == false ? expression : expressionNoComma;
|
||||||
if (type == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);
|
if (type == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);
|
||||||
if (type == "operator") {
|
if (type == "operator") {
|
||||||
if (/\+\+|--/.test(value) || isTS && value == "!") return cont(me);
|
if (/\+\+|--/.test(value)) return cont(me);
|
||||||
if (isTS && value == "<" && cx.stream.match(/^([^>]|<.*?>)*>\s*\(/, false))
|
|
||||||
return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, me);
|
|
||||||
if (value == "?") return cont(expression, expect(":"), expr);
|
if (value == "?") return cont(expression, expect(":"), expr);
|
||||||
return cont(expr);
|
return cont(expr);
|
||||||
}
|
}
|
||||||
@ -465,12 +402,6 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
if (type == "(") return contCommasep(expressionNoComma, ")", "call", me);
|
if (type == "(") return contCommasep(expressionNoComma, ")", "call", me);
|
||||||
if (type == ".") return cont(property, me);
|
if (type == ".") return cont(property, me);
|
||||||
if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
|
if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
|
||||||
if (isTS && value == "as") { cx.marked = "keyword"; return cont(typeexpr, me) }
|
|
||||||
if (type == "regexp") {
|
|
||||||
cx.state.lastType = cx.marked = "operator"
|
|
||||||
cx.stream.backUp(cx.stream.pos - cx.stream.start - 1)
|
|
||||||
return cont(expr)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
function quasi(type, value) {
|
function quasi(type, value) {
|
||||||
if (type != "quasi") return pass();
|
if (type != "quasi") return pass();
|
||||||
@ -492,19 +423,6 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
findFatArrow(cx.stream, cx.state);
|
findFatArrow(cx.stream, cx.state);
|
||||||
return pass(type == "{" ? statement : expressionNoComma);
|
return pass(type == "{" ? statement : expressionNoComma);
|
||||||
}
|
}
|
||||||
function maybeTarget(noComma) {
|
|
||||||
return function(type) {
|
|
||||||
if (type == ".") return cont(noComma ? targetNoComma : target);
|
|
||||||
else if (type == "variable" && isTS) return cont(maybeTypeArgs, noComma ? maybeoperatorNoComma : maybeoperatorComma)
|
|
||||||
else return pass(noComma ? expressionNoComma : expression);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
function target(_, value) {
|
|
||||||
if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorComma); }
|
|
||||||
}
|
|
||||||
function targetNoComma(_, value) {
|
|
||||||
if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorNoComma); }
|
|
||||||
}
|
|
||||||
function maybelabel(type) {
|
function maybelabel(type) {
|
||||||
if (type == ":") return cont(poplex, statement);
|
if (type == ":") return cont(poplex, statement);
|
||||||
return pass(maybeoperatorComma, expect(";"), poplex);
|
return pass(maybeoperatorComma, expect(";"), poplex);
|
||||||
@ -513,33 +431,17 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
if (type == "variable") {cx.marked = "property"; return cont();}
|
if (type == "variable") {cx.marked = "property"; return cont();}
|
||||||
}
|
}
|
||||||
function objprop(type, value) {
|
function objprop(type, value) {
|
||||||
if (type == "async") {
|
if (type == "variable" || cx.style == "keyword") {
|
||||||
cx.marked = "property";
|
|
||||||
return cont(objprop);
|
|
||||||
} else if (type == "variable" || cx.style == "keyword") {
|
|
||||||
cx.marked = "property";
|
cx.marked = "property";
|
||||||
if (value == "get" || value == "set") return cont(getterSetter);
|
if (value == "get" || value == "set") return cont(getterSetter);
|
||||||
var m // Work around fat-arrow-detection complication for detecting typescript typed arrow params
|
|
||||||
if (isTS && cx.state.fatArrowAt == cx.stream.start && (m = cx.stream.match(/^\s*:\s*/, false)))
|
|
||||||
cx.state.fatArrowAt = cx.stream.pos + m[0].length
|
|
||||||
return cont(afterprop);
|
return cont(afterprop);
|
||||||
} else if (type == "number" || type == "string") {
|
} else if (type == "number" || type == "string") {
|
||||||
cx.marked = jsonldMode ? "property" : (cx.style + " property");
|
cx.marked = jsonldMode ? "property" : (cx.style + " property");
|
||||||
return cont(afterprop);
|
return cont(afterprop);
|
||||||
} else if (type == "jsonld-keyword") {
|
} else if (type == "jsonld-keyword") {
|
||||||
return cont(afterprop);
|
return cont(afterprop);
|
||||||
} else if (isTS && isModifier(value)) {
|
|
||||||
cx.marked = "keyword"
|
|
||||||
return cont(objprop)
|
|
||||||
} else if (type == "[") {
|
} else if (type == "[") {
|
||||||
return cont(expression, maybetype, expect("]"), afterprop);
|
return cont(expression, expect("]"), afterprop);
|
||||||
} else if (type == "spread") {
|
|
||||||
return cont(expressionNoComma, afterprop);
|
|
||||||
} else if (value == "*") {
|
|
||||||
cx.marked = "keyword";
|
|
||||||
return cont(objprop);
|
|
||||||
} else if (type == ":") {
|
|
||||||
return pass(afterprop)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function getterSetter(type) {
|
function getterSetter(type) {
|
||||||
@ -551,22 +453,18 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
if (type == ":") return cont(expressionNoComma);
|
if (type == ":") return cont(expressionNoComma);
|
||||||
if (type == "(") return pass(functiondef);
|
if (type == "(") return pass(functiondef);
|
||||||
}
|
}
|
||||||
function commasep(what, end, sep) {
|
function commasep(what, end) {
|
||||||
function proceed(type, value) {
|
function proceed(type) {
|
||||||
if (sep ? sep.indexOf(type) > -1 : type == ",") {
|
if (type == ",") {
|
||||||
var lex = cx.state.lexical;
|
var lex = cx.state.lexical;
|
||||||
if (lex.info == "call") lex.pos = (lex.pos || 0) + 1;
|
if (lex.info == "call") lex.pos = (lex.pos || 0) + 1;
|
||||||
return cont(function(type, value) {
|
return cont(what, proceed);
|
||||||
if (type == end || value == end) return pass()
|
|
||||||
return pass(what)
|
|
||||||
}, proceed);
|
|
||||||
}
|
}
|
||||||
if (type == end || value == end) return cont();
|
if (type == end) return cont();
|
||||||
if (sep && sep.indexOf(";") > -1) return pass(what)
|
|
||||||
return cont(expect(end));
|
return cont(expect(end));
|
||||||
}
|
}
|
||||||
return function(type, value) {
|
return function(type) {
|
||||||
if (type == end || value == end) return cont();
|
if (type == end) return cont();
|
||||||
return pass(what, proceed);
|
return pass(what, proceed);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -579,91 +477,18 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
if (type == "}") return cont();
|
if (type == "}") return cont();
|
||||||
return pass(statement, block);
|
return pass(statement, block);
|
||||||
}
|
}
|
||||||
function maybetype(type, value) {
|
function maybetype(type) {
|
||||||
if (isTS) {
|
if (isTS && type == ":") return cont(typedef);
|
||||||
if (type == ":") return cont(typeexpr);
|
|
||||||
if (value == "?") return cont(maybetype);
|
|
||||||
}
|
}
|
||||||
|
function typedef(type) {
|
||||||
|
if (type == "variable"){cx.marked = "variable-3"; return cont();}
|
||||||
}
|
}
|
||||||
function maybetypeOrIn(type, value) {
|
function vardef() {
|
||||||
if (isTS && (type == ":" || value == "in")) return cont(typeexpr)
|
|
||||||
}
|
|
||||||
function mayberettype(type) {
|
|
||||||
if (isTS && type == ":") {
|
|
||||||
if (cx.stream.match(/^\s*\w+\s+is\b/, false)) return cont(expression, isKW, typeexpr)
|
|
||||||
else return cont(typeexpr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function isKW(_, value) {
|
|
||||||
if (value == "is") {
|
|
||||||
cx.marked = "keyword"
|
|
||||||
return cont()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function typeexpr(type, value) {
|
|
||||||
if (value == "keyof" || value == "typeof" || value == "infer") {
|
|
||||||
cx.marked = "keyword"
|
|
||||||
return cont(value == "typeof" ? expressionNoComma : typeexpr)
|
|
||||||
}
|
|
||||||
if (type == "variable" || value == "void") {
|
|
||||||
cx.marked = "type"
|
|
||||||
return cont(afterType)
|
|
||||||
}
|
|
||||||
if (value == "|" || value == "&") return cont(typeexpr)
|
|
||||||
if (type == "string" || type == "number" || type == "atom") return cont(afterType);
|
|
||||||
if (type == "[") return cont(pushlex("]"), commasep(typeexpr, "]", ","), poplex, afterType)
|
|
||||||
if (type == "{") return cont(pushlex("}"), commasep(typeprop, "}", ",;"), poplex, afterType)
|
|
||||||
if (type == "(") return cont(commasep(typearg, ")"), maybeReturnType, afterType)
|
|
||||||
if (type == "<") return cont(commasep(typeexpr, ">"), typeexpr)
|
|
||||||
}
|
|
||||||
function maybeReturnType(type) {
|
|
||||||
if (type == "=>") return cont(typeexpr)
|
|
||||||
}
|
|
||||||
function typeprop(type, value) {
|
|
||||||
if (type == "variable" || cx.style == "keyword") {
|
|
||||||
cx.marked = "property"
|
|
||||||
return cont(typeprop)
|
|
||||||
} else if (value == "?" || type == "number" || type == "string") {
|
|
||||||
return cont(typeprop)
|
|
||||||
} else if (type == ":") {
|
|
||||||
return cont(typeexpr)
|
|
||||||
} else if (type == "[") {
|
|
||||||
return cont(expect("variable"), maybetypeOrIn, expect("]"), typeprop)
|
|
||||||
} else if (type == "(") {
|
|
||||||
return pass(functiondecl, typeprop)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function typearg(type, value) {
|
|
||||||
if (type == "variable" && cx.stream.match(/^\s*[?:]/, false) || value == "?") return cont(typearg)
|
|
||||||
if (type == ":") return cont(typeexpr)
|
|
||||||
if (type == "spread") return cont(typearg)
|
|
||||||
return pass(typeexpr)
|
|
||||||
}
|
|
||||||
function afterType(type, value) {
|
|
||||||
if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType)
|
|
||||||
if (value == "|" || type == "." || value == "&") return cont(typeexpr)
|
|
||||||
if (type == "[") return cont(typeexpr, expect("]"), afterType)
|
|
||||||
if (value == "extends" || value == "implements") { cx.marked = "keyword"; return cont(typeexpr) }
|
|
||||||
if (value == "?") return cont(typeexpr, expect(":"), typeexpr)
|
|
||||||
}
|
|
||||||
function maybeTypeArgs(_, value) {
|
|
||||||
if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType)
|
|
||||||
}
|
|
||||||
function typeparam() {
|
|
||||||
return pass(typeexpr, maybeTypeDefault)
|
|
||||||
}
|
|
||||||
function maybeTypeDefault(_, value) {
|
|
||||||
if (value == "=") return cont(typeexpr)
|
|
||||||
}
|
|
||||||
function vardef(_, value) {
|
|
||||||
if (value == "enum") {cx.marked = "keyword"; return cont(enumdef)}
|
|
||||||
return pass(pattern, maybetype, maybeAssign, vardefCont);
|
return pass(pattern, maybetype, maybeAssign, vardefCont);
|
||||||
}
|
}
|
||||||
function pattern(type, value) {
|
function pattern(type, value) {
|
||||||
if (isTS && isModifier(value)) { cx.marked = "keyword"; return cont(pattern) }
|
|
||||||
if (type == "variable") { register(value); return cont(); }
|
if (type == "variable") { register(value); return cont(); }
|
||||||
if (type == "spread") return cont(pattern);
|
if (type == "[") return contCommasep(pattern, "]");
|
||||||
if (type == "[") return contCommasep(eltpattern, "]");
|
|
||||||
if (type == "{") return contCommasep(proppattern, "}");
|
if (type == "{") return contCommasep(proppattern, "}");
|
||||||
}
|
}
|
||||||
function proppattern(type, value) {
|
function proppattern(type, value) {
|
||||||
@ -672,14 +497,8 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
return cont(maybeAssign);
|
return cont(maybeAssign);
|
||||||
}
|
}
|
||||||
if (type == "variable") cx.marked = "property";
|
if (type == "variable") cx.marked = "property";
|
||||||
if (type == "spread") return cont(pattern);
|
|
||||||
if (type == "}") return pass();
|
|
||||||
if (type == "[") return cont(expression, expect(']'), expect(':'), proppattern);
|
|
||||||
return cont(expect(":"), pattern, maybeAssign);
|
return cont(expect(":"), pattern, maybeAssign);
|
||||||
}
|
}
|
||||||
function eltpattern() {
|
|
||||||
return pass(pattern, maybeAssign)
|
|
||||||
}
|
|
||||||
function maybeAssign(_type, value) {
|
function maybeAssign(_type, value) {
|
||||||
if (value == "=") return cont(expressionNoComma);
|
if (value == "=") return cont(expressionNoComma);
|
||||||
}
|
}
|
||||||
@ -689,146 +508,94 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
function maybeelse(type, value) {
|
function maybeelse(type, value) {
|
||||||
if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex);
|
if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex);
|
||||||
}
|
}
|
||||||
function forspec(type, value) {
|
function forspec(type) {
|
||||||
if (value == "await") return cont(forspec);
|
if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex);
|
||||||
if (type == "(") return cont(pushlex(")"), forspec1, poplex);
|
|
||||||
}
|
}
|
||||||
function forspec1(type) {
|
function forspec1(type) {
|
||||||
if (type == "var") return cont(vardef, forspec2);
|
if (type == "var") return cont(vardef, expect(";"), forspec2);
|
||||||
if (type == "variable") return cont(forspec2);
|
if (type == ";") return cont(forspec2);
|
||||||
return pass(forspec2)
|
if (type == "variable") return cont(formaybeinof);
|
||||||
|
return pass(expression, expect(";"), forspec2);
|
||||||
|
}
|
||||||
|
function formaybeinof(_type, value) {
|
||||||
|
if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
|
||||||
|
return cont(maybeoperatorComma, forspec2);
|
||||||
}
|
}
|
||||||
function forspec2(type, value) {
|
function forspec2(type, value) {
|
||||||
if (type == ")") return cont()
|
if (type == ";") return cont(forspec3);
|
||||||
if (type == ";") return cont(forspec2)
|
if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
|
||||||
if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression, forspec2) }
|
return pass(expression, expect(";"), forspec3);
|
||||||
return pass(expression, forspec2)
|
}
|
||||||
|
function forspec3(type) {
|
||||||
|
if (type != ")") cont(expression);
|
||||||
}
|
}
|
||||||
function functiondef(type, value) {
|
function functiondef(type, value) {
|
||||||
if (value == "*") {cx.marked = "keyword"; return cont(functiondef);}
|
if (value == "*") {cx.marked = "keyword"; return cont(functiondef);}
|
||||||
if (type == "variable") {register(value); return cont(functiondef);}
|
if (type == "variable") {register(value); return cont(functiondef);}
|
||||||
if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, mayberettype, statement, popcontext);
|
if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, statement, popcontext);
|
||||||
if (isTS && value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, functiondef)
|
|
||||||
}
|
}
|
||||||
function functiondecl(type, value) {
|
function funarg(type) {
|
||||||
if (value == "*") {cx.marked = "keyword"; return cont(functiondecl);}
|
|
||||||
if (type == "variable") {register(value); return cont(functiondecl);}
|
|
||||||
if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, mayberettype, popcontext);
|
|
||||||
if (isTS && value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, functiondecl)
|
|
||||||
}
|
|
||||||
function typename(type, value) {
|
|
||||||
if (type == "keyword" || type == "variable") {
|
|
||||||
cx.marked = "type"
|
|
||||||
return cont(typename)
|
|
||||||
} else if (value == "<") {
|
|
||||||
return cont(pushlex(">"), commasep(typeparam, ">"), poplex)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function funarg(type, value) {
|
|
||||||
if (value == "@") cont(expression, funarg)
|
|
||||||
if (type == "spread") return cont(funarg);
|
if (type == "spread") return cont(funarg);
|
||||||
if (isTS && isModifier(value)) { cx.marked = "keyword"; return cont(funarg); }
|
return pass(pattern, maybetype);
|
||||||
if (isTS && type == "this") return cont(maybetype, maybeAssign)
|
|
||||||
return pass(pattern, maybetype, maybeAssign);
|
|
||||||
}
|
|
||||||
function classExpression(type, value) {
|
|
||||||
// Class expressions may have an optional name.
|
|
||||||
if (type == "variable") return className(type, value);
|
|
||||||
return classNameAfter(type, value);
|
|
||||||
}
|
}
|
||||||
function className(type, value) {
|
function className(type, value) {
|
||||||
if (type == "variable") {register(value); return cont(classNameAfter);}
|
if (type == "variable") {register(value); return cont(classNameAfter);}
|
||||||
}
|
}
|
||||||
function classNameAfter(type, value) {
|
function classNameAfter(type, value) {
|
||||||
if (value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, classNameAfter)
|
if (value == "extends") return cont(expression, classNameAfter);
|
||||||
if (value == "extends" || value == "implements" || (isTS && type == ",")) {
|
|
||||||
if (value == "implements") cx.marked = "keyword";
|
|
||||||
return cont(isTS ? typeexpr : expression, classNameAfter);
|
|
||||||
}
|
|
||||||
if (type == "{") return cont(pushlex("}"), classBody, poplex);
|
if (type == "{") return cont(pushlex("}"), classBody, poplex);
|
||||||
}
|
}
|
||||||
function classBody(type, value) {
|
function classBody(type, value) {
|
||||||
if (type == "async" ||
|
|
||||||
(type == "variable" &&
|
|
||||||
(value == "static" || value == "get" || value == "set" || (isTS && isModifier(value))) &&
|
|
||||||
cx.stream.match(/^\s+[\w$\xa1-\uffff]/, false))) {
|
|
||||||
cx.marked = "keyword";
|
|
||||||
return cont(classBody);
|
|
||||||
}
|
|
||||||
if (type == "variable" || cx.style == "keyword") {
|
if (type == "variable" || cx.style == "keyword") {
|
||||||
cx.marked = "property";
|
cx.marked = "property";
|
||||||
return cont(isTS ? classfield : functiondef, classBody);
|
if (value == "get" || value == "set") return cont(classGetterSetter, functiondef, classBody);
|
||||||
|
return cont(functiondef, classBody);
|
||||||
}
|
}
|
||||||
if (type == "number" || type == "string") return cont(isTS ? classfield : functiondef, classBody);
|
|
||||||
if (type == "[")
|
|
||||||
return cont(expression, maybetype, expect("]"), isTS ? classfield : functiondef, classBody)
|
|
||||||
if (value == "*") {
|
if (value == "*") {
|
||||||
cx.marked = "keyword";
|
cx.marked = "keyword";
|
||||||
return cont(classBody);
|
return cont(classBody);
|
||||||
}
|
}
|
||||||
if (isTS && type == "(") return pass(functiondecl, classBody)
|
if (type == ";") return cont(classBody);
|
||||||
if (type == ";" || type == ",") return cont(classBody);
|
|
||||||
if (type == "}") return cont();
|
if (type == "}") return cont();
|
||||||
if (value == "@") return cont(expression, classBody)
|
|
||||||
}
|
}
|
||||||
function classfield(type, value) {
|
function classGetterSetter(type) {
|
||||||
if (value == "?") return cont(classfield)
|
if (type != "variable") return pass();
|
||||||
if (type == ":") return cont(typeexpr, maybeAssign)
|
cx.marked = "property";
|
||||||
if (value == "=") return cont(expressionNoComma)
|
return cont();
|
||||||
var context = cx.state.lexical.prev, isInterface = context && context.info == "interface"
|
|
||||||
return pass(isInterface ? functiondecl : functiondef)
|
|
||||||
}
|
}
|
||||||
function afterExport(type, value) {
|
function afterModule(type, value) {
|
||||||
|
if (type == "string") return cont(statement);
|
||||||
|
if (type == "variable") { register(value); return cont(maybeFrom); }
|
||||||
|
}
|
||||||
|
function afterExport(_type, value) {
|
||||||
if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); }
|
if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); }
|
||||||
if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); }
|
if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); }
|
||||||
if (type == "{") return cont(commasep(exportField, "}"), maybeFrom, expect(";"));
|
|
||||||
return pass(statement);
|
return pass(statement);
|
||||||
}
|
}
|
||||||
function exportField(type, value) {
|
|
||||||
if (value == "as") { cx.marked = "keyword"; return cont(expect("variable")); }
|
|
||||||
if (type == "variable") return pass(expressionNoComma, exportField);
|
|
||||||
}
|
|
||||||
function afterImport(type) {
|
function afterImport(type) {
|
||||||
if (type == "string") return cont();
|
if (type == "string") return cont();
|
||||||
if (type == "(") return pass(expression);
|
return pass(importSpec, maybeFrom);
|
||||||
return pass(importSpec, maybeMoreImports, maybeFrom);
|
|
||||||
}
|
}
|
||||||
function importSpec(type, value) {
|
function importSpec(type, value) {
|
||||||
if (type == "{") return contCommasep(importSpec, "}");
|
if (type == "{") return contCommasep(importSpec, "}");
|
||||||
if (type == "variable") register(value);
|
if (type == "variable") register(value);
|
||||||
if (value == "*") cx.marked = "keyword";
|
return cont();
|
||||||
return cont(maybeAs);
|
|
||||||
}
|
|
||||||
function maybeMoreImports(type) {
|
|
||||||
if (type == ",") return cont(importSpec, maybeMoreImports)
|
|
||||||
}
|
|
||||||
function maybeAs(_type, value) {
|
|
||||||
if (value == "as") { cx.marked = "keyword"; return cont(importSpec); }
|
|
||||||
}
|
}
|
||||||
function maybeFrom(_type, value) {
|
function maybeFrom(_type, value) {
|
||||||
if (value == "from") { cx.marked = "keyword"; return cont(expression); }
|
if (value == "from") { cx.marked = "keyword"; return cont(expression); }
|
||||||
}
|
}
|
||||||
function arrayLiteral(type) {
|
function arrayLiteral(type) {
|
||||||
if (type == "]") return cont();
|
if (type == "]") return cont();
|
||||||
|
return pass(expressionNoComma, maybeArrayComprehension);
|
||||||
|
}
|
||||||
|
function maybeArrayComprehension(type) {
|
||||||
|
if (type == "for") return pass(comprehension, expect("]"));
|
||||||
|
if (type == ",") return cont(commasep(maybeexpressionNoComma, "]"));
|
||||||
return pass(commasep(expressionNoComma, "]"));
|
return pass(commasep(expressionNoComma, "]"));
|
||||||
}
|
}
|
||||||
function enumdef() {
|
function comprehension(type) {
|
||||||
return pass(pushlex("form"), pattern, expect("{"), pushlex("}"), commasep(enummember, "}"), poplex, poplex)
|
if (type == "for") return cont(forspec, comprehension);
|
||||||
}
|
if (type == "if") return cont(expression, comprehension);
|
||||||
function enummember() {
|
|
||||||
return pass(pattern, maybeAssign);
|
|
||||||
}
|
|
||||||
|
|
||||||
function isContinuedStatement(state, textAfter) {
|
|
||||||
return state.lastType == "operator" || state.lastType == "," ||
|
|
||||||
isOperatorChar.test(textAfter.charAt(0)) ||
|
|
||||||
/[,.]/.test(textAfter.charAt(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
function expressionAllowed(stream, state, backUp) {
|
|
||||||
return state.tokenize == tokenBase &&
|
|
||||||
/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(state.lastType) ||
|
|
||||||
(state.lastType == "quasi" && /\{\s*$/.test(stream.string.slice(0, stream.pos - (backUp || 0))))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Interface
|
// Interface
|
||||||
@ -841,8 +608,8 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
cc: [],
|
cc: [],
|
||||||
lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
|
lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
|
||||||
localVars: parserConfig.localVars,
|
localVars: parserConfig.localVars,
|
||||||
context: parserConfig.localVars && new Context(null, null, false),
|
context: parserConfig.localVars && {vars: parserConfig.localVars},
|
||||||
indented: basecolumn || 0
|
indented: 0
|
||||||
};
|
};
|
||||||
if (parserConfig.globalVars && typeof parserConfig.globalVars == "object")
|
if (parserConfig.globalVars && typeof parserConfig.globalVars == "object")
|
||||||
state.globalVars = parserConfig.globalVars;
|
state.globalVars = parserConfig.globalVars;
|
||||||
@ -866,27 +633,23 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
indent: function(state, textAfter) {
|
indent: function(state, textAfter) {
|
||||||
if (state.tokenize == tokenComment) return CodeMirror.Pass;
|
if (state.tokenize == tokenComment) return CodeMirror.Pass;
|
||||||
if (state.tokenize != tokenBase) return 0;
|
if (state.tokenize != tokenBase) return 0;
|
||||||
var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical, top
|
var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical;
|
||||||
// Kludge to prevent 'maybelse' from blocking lexical scope pops
|
// Kludge to prevent 'maybelse' from blocking lexical scope pops
|
||||||
if (!/^\s*else\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) {
|
if (!/^\s*else\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) {
|
||||||
var c = state.cc[i];
|
var c = state.cc[i];
|
||||||
if (c == poplex) lexical = lexical.prev;
|
if (c == poplex) lexical = lexical.prev;
|
||||||
else if (c != maybeelse) break;
|
else if (c != maybeelse) break;
|
||||||
}
|
}
|
||||||
while ((lexical.type == "stat" || lexical.type == "form") &&
|
if (lexical.type == "stat" && firstChar == "}") lexical = lexical.prev;
|
||||||
(firstChar == "}" || ((top = state.cc[state.cc.length - 1]) &&
|
|
||||||
(top == maybeoperatorComma || top == maybeoperatorNoComma) &&
|
|
||||||
!/^[,\.=+\-*:?[\(]/.test(textAfter))))
|
|
||||||
lexical = lexical.prev;
|
|
||||||
if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
|
if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
|
||||||
lexical = lexical.prev;
|
lexical = lexical.prev;
|
||||||
var type = lexical.type, closing = firstChar == type;
|
var type = lexical.type, closing = firstChar == type;
|
||||||
|
|
||||||
if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info.length + 1 : 0);
|
if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info + 1 : 0);
|
||||||
else if (type == "form" && firstChar == "{") return lexical.indented;
|
else if (type == "form" && firstChar == "{") return lexical.indented;
|
||||||
else if (type == "form") return lexical.indented + indentUnit;
|
else if (type == "form") return lexical.indented + indentUnit;
|
||||||
else if (type == "stat")
|
else if (type == "stat")
|
||||||
return lexical.indented + (isContinuedStatement(state, textAfter) ? statementIndent || indentUnit : 0);
|
return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? statementIndent || indentUnit : 0);
|
||||||
else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false)
|
else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false)
|
||||||
return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
|
return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
|
||||||
else if (lexical.align) return lexical.column + (closing ? 0 : 1);
|
else if (lexical.align) return lexical.column + (closing ? 0 : 1);
|
||||||
@ -896,21 +659,12 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
|||||||
electricInput: /^\s*(?:case .*?:|default:|\{|\})$/,
|
electricInput: /^\s*(?:case .*?:|default:|\{|\})$/,
|
||||||
blockCommentStart: jsonMode ? null : "/*",
|
blockCommentStart: jsonMode ? null : "/*",
|
||||||
blockCommentEnd: jsonMode ? null : "*/",
|
blockCommentEnd: jsonMode ? null : "*/",
|
||||||
blockCommentContinue: jsonMode ? null : " * ",
|
|
||||||
lineComment: jsonMode ? null : "//",
|
lineComment: jsonMode ? null : "//",
|
||||||
fold: "brace",
|
fold: "brace",
|
||||||
closeBrackets: "()[]{}''\"\"``",
|
|
||||||
|
|
||||||
helperType: jsonMode ? "json" : "javascript",
|
helperType: jsonMode ? "json" : "javascript",
|
||||||
jsonldMode: jsonldMode,
|
jsonldMode: jsonldMode,
|
||||||
jsonMode: jsonMode,
|
jsonMode: jsonMode
|
||||||
|
|
||||||
expressionAllowed: expressionAllowed,
|
|
||||||
|
|
||||||
skipExpression: function(state) {
|
|
||||||
var top = state.cc[state.cc.length - 1]
|
|
||||||
if (top == expression || top == expressionNoComma) state.cc.pop()
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
765
core/vendor/codemirror/mode/markdown/markdown.js
vendored
Normal file
765
core/vendor/codemirror/mode/markdown/markdown.js
vendored
Normal file
@ -0,0 +1,765 @@
|
|||||||
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||||
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||||
|
|
||||||
|
(function(mod) {
|
||||||
|
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
||||||
|
mod(require("../../lib/codemirror", require("../xml/xml"), require("../meta")));
|
||||||
|
else if (typeof define == "function" && define.amd) // AMD
|
||||||
|
define(["../../lib/codemirror", "../xml/xml", "../meta"], mod);
|
||||||
|
else // Plain browser env
|
||||||
|
mod(CodeMirror);
|
||||||
|
})(function(CodeMirror) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
CodeMirror.defineMode("markdown", function(cmCfg, modeCfg) {
|
||||||
|
|
||||||
|
var htmlFound = CodeMirror.modes.hasOwnProperty("xml");
|
||||||
|
var htmlMode = CodeMirror.getMode(cmCfg, htmlFound ? {name: "xml", htmlMode: true} : "text/plain");
|
||||||
|
|
||||||
|
function getMode(name) {
|
||||||
|
if (CodeMirror.findModeByName) {
|
||||||
|
var found = CodeMirror.findModeByName(name);
|
||||||
|
if (found) name = found.mime || found.mimes[0];
|
||||||
|
}
|
||||||
|
var mode = CodeMirror.getMode(cmCfg, name);
|
||||||
|
return mode.name == "null" ? null : mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Should characters that affect highlighting be highlighted separate?
|
||||||
|
// Does not include characters that will be output (such as `1.` and `-` for lists)
|
||||||
|
if (modeCfg.highlightFormatting === undefined)
|
||||||
|
modeCfg.highlightFormatting = false;
|
||||||
|
|
||||||
|
// Maximum number of nested blockquotes. Set to 0 for infinite nesting.
|
||||||
|
// Excess `>` will emit `error` token.
|
||||||
|
if (modeCfg.maxBlockquoteDepth === undefined)
|
||||||
|
modeCfg.maxBlockquoteDepth = 0;
|
||||||
|
|
||||||
|
// Should underscores in words open/close em/strong?
|
||||||
|
if (modeCfg.underscoresBreakWords === undefined)
|
||||||
|
modeCfg.underscoresBreakWords = true;
|
||||||
|
|
||||||
|
// Turn on fenced code blocks? ("```" to start/end)
|
||||||
|
if (modeCfg.fencedCodeBlocks === undefined) modeCfg.fencedCodeBlocks = false;
|
||||||
|
|
||||||
|
// Turn on task lists? ("- [ ] " and "- [x] ")
|
||||||
|
if (modeCfg.taskLists === undefined) modeCfg.taskLists = false;
|
||||||
|
|
||||||
|
// Turn on strikethrough syntax
|
||||||
|
if (modeCfg.strikethrough === undefined)
|
||||||
|
modeCfg.strikethrough = false;
|
||||||
|
|
||||||
|
var codeDepth = 0;
|
||||||
|
|
||||||
|
var header = 'header'
|
||||||
|
, code = 'comment'
|
||||||
|
, quote = 'quote'
|
||||||
|
, list1 = 'variable-2'
|
||||||
|
, list2 = 'variable-3'
|
||||||
|
, list3 = 'keyword'
|
||||||
|
, hr = 'hr'
|
||||||
|
, image = 'tag'
|
||||||
|
, formatting = 'formatting'
|
||||||
|
, linkinline = 'link'
|
||||||
|
, linkemail = 'link'
|
||||||
|
, linktext = 'link'
|
||||||
|
, linkhref = 'string'
|
||||||
|
, em = 'em'
|
||||||
|
, strong = 'strong'
|
||||||
|
, strikethrough = 'strikethrough';
|
||||||
|
|
||||||
|
var hrRE = /^([*\-=_])(?:\s*\1){2,}\s*$/
|
||||||
|
, ulRE = /^[*\-+]\s+/
|
||||||
|
, olRE = /^[0-9]+\.\s+/
|
||||||
|
, taskListRE = /^\[(x| )\](?=\s)/ // Must follow ulRE or olRE
|
||||||
|
, atxHeaderRE = /^#+/
|
||||||
|
, setextHeaderRE = /^(?:\={1,}|-{1,})$/
|
||||||
|
, textRE = /^[^#!\[\]*_\\<>` "'(~]+/;
|
||||||
|
|
||||||
|
function switchInline(stream, state, f) {
|
||||||
|
state.f = state.inline = f;
|
||||||
|
return f(stream, state);
|
||||||
|
}
|
||||||
|
|
||||||
|
function switchBlock(stream, state, f) {
|
||||||
|
state.f = state.block = f;
|
||||||
|
return f(stream, state);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Blocks
|
||||||
|
|
||||||
|
function blankLine(state) {
|
||||||
|
// Reset linkTitle state
|
||||||
|
state.linkTitle = false;
|
||||||
|
// Reset EM state
|
||||||
|
state.em = false;
|
||||||
|
// Reset STRONG state
|
||||||
|
state.strong = false;
|
||||||
|
// Reset strikethrough state
|
||||||
|
state.strikethrough = false;
|
||||||
|
// Reset state.quote
|
||||||
|
state.quote = 0;
|
||||||
|
if (!htmlFound && state.f == htmlBlock) {
|
||||||
|
state.f = inlineNormal;
|
||||||
|
state.block = blockNormal;
|
||||||
|
}
|
||||||
|
// Reset state.trailingSpace
|
||||||
|
state.trailingSpace = 0;
|
||||||
|
state.trailingSpaceNewLine = false;
|
||||||
|
// Mark this line as blank
|
||||||
|
state.thisLineHasContent = false;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function blockNormal(stream, state) {
|
||||||
|
|
||||||
|
var sol = stream.sol();
|
||||||
|
|
||||||
|
var prevLineIsList = (state.list !== false);
|
||||||
|
if (state.list !== false && state.indentationDiff >= 0) { // Continued list
|
||||||
|
if (state.indentationDiff < 4) { // Only adjust indentation if *not* a code block
|
||||||
|
state.indentation -= state.indentationDiff;
|
||||||
|
}
|
||||||
|
state.list = null;
|
||||||
|
} else if (state.list !== false && state.indentation > 0) {
|
||||||
|
state.list = null;
|
||||||
|
state.listDepth = Math.floor(state.indentation / 4);
|
||||||
|
} else if (state.list !== false) { // No longer a list
|
||||||
|
state.list = false;
|
||||||
|
state.listDepth = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
var match = null;
|
||||||
|
if (state.indentationDiff >= 4) {
|
||||||
|
state.indentation -= 4;
|
||||||
|
stream.skipToEnd();
|
||||||
|
return code;
|
||||||
|
} else if (stream.eatSpace()) {
|
||||||
|
return null;
|
||||||
|
} else if (match = stream.match(atxHeaderRE)) {
|
||||||
|
state.header = match[0].length <= 6 ? match[0].length : 6;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "header";
|
||||||
|
state.f = state.inline;
|
||||||
|
return getType(state);
|
||||||
|
} else if (state.prevLineHasContent && (match = stream.match(setextHeaderRE))) {
|
||||||
|
state.header = match[0].charAt(0) == '=' ? 1 : 2;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "header";
|
||||||
|
state.f = state.inline;
|
||||||
|
return getType(state);
|
||||||
|
} else if (stream.eat('>')) {
|
||||||
|
state.indentation++;
|
||||||
|
state.quote = sol ? 1 : state.quote + 1;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "quote";
|
||||||
|
stream.eatSpace();
|
||||||
|
return getType(state);
|
||||||
|
} else if (stream.peek() === '[') {
|
||||||
|
return switchInline(stream, state, footnoteLink);
|
||||||
|
} else if (stream.match(hrRE, true)) {
|
||||||
|
return hr;
|
||||||
|
} else if ((!state.prevLineHasContent || prevLineIsList) && (stream.match(ulRE, false) || stream.match(olRE, false))) {
|
||||||
|
var listType = null;
|
||||||
|
if (stream.match(ulRE, true)) {
|
||||||
|
listType = 'ul';
|
||||||
|
} else {
|
||||||
|
stream.match(olRE, true);
|
||||||
|
listType = 'ol';
|
||||||
|
}
|
||||||
|
state.indentation += 4;
|
||||||
|
state.list = true;
|
||||||
|
state.listDepth++;
|
||||||
|
if (modeCfg.taskLists && stream.match(taskListRE, false)) {
|
||||||
|
state.taskList = true;
|
||||||
|
}
|
||||||
|
state.f = state.inline;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = ["list", "list-" + listType];
|
||||||
|
return getType(state);
|
||||||
|
} else if (modeCfg.fencedCodeBlocks && stream.match(/^```[ \t]*([\w+#]*)/, true)) {
|
||||||
|
// try switching mode
|
||||||
|
state.localMode = getMode(RegExp.$1);
|
||||||
|
if (state.localMode) state.localState = state.localMode.startState();
|
||||||
|
state.f = state.block = local;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "code-block";
|
||||||
|
state.code = true;
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
return switchInline(stream, state, state.inline);
|
||||||
|
}
|
||||||
|
|
||||||
|
function htmlBlock(stream, state) {
|
||||||
|
var style = htmlMode.token(stream, state.htmlState);
|
||||||
|
if ((htmlFound && state.htmlState.tagStart === null && !state.htmlState.context) ||
|
||||||
|
(state.md_inside && stream.current().indexOf(">") > -1)) {
|
||||||
|
state.f = inlineNormal;
|
||||||
|
state.block = blockNormal;
|
||||||
|
state.htmlState = null;
|
||||||
|
}
|
||||||
|
return style;
|
||||||
|
}
|
||||||
|
|
||||||
|
function local(stream, state) {
|
||||||
|
if (stream.sol() && stream.match("```", false)) {
|
||||||
|
state.localMode = state.localState = null;
|
||||||
|
state.f = state.block = leavingLocal;
|
||||||
|
return null;
|
||||||
|
} else if (state.localMode) {
|
||||||
|
return state.localMode.token(stream, state.localState);
|
||||||
|
} else {
|
||||||
|
stream.skipToEnd();
|
||||||
|
return code;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function leavingLocal(stream, state) {
|
||||||
|
stream.match("```");
|
||||||
|
state.block = blockNormal;
|
||||||
|
state.f = inlineNormal;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "code-block";
|
||||||
|
state.code = true;
|
||||||
|
var returnType = getType(state);
|
||||||
|
state.code = false;
|
||||||
|
return returnType;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Inline
|
||||||
|
function getType(state) {
|
||||||
|
var styles = [];
|
||||||
|
|
||||||
|
if (state.formatting) {
|
||||||
|
styles.push(formatting);
|
||||||
|
|
||||||
|
if (typeof state.formatting === "string") state.formatting = [state.formatting];
|
||||||
|
|
||||||
|
for (var i = 0; i < state.formatting.length; i++) {
|
||||||
|
styles.push(formatting + "-" + state.formatting[i]);
|
||||||
|
|
||||||
|
if (state.formatting[i] === "header") {
|
||||||
|
styles.push(formatting + "-" + state.formatting[i] + "-" + state.header);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add `formatting-quote` and `formatting-quote-#` for blockquotes
|
||||||
|
// Add `error` instead if the maximum blockquote nesting depth is passed
|
||||||
|
if (state.formatting[i] === "quote") {
|
||||||
|
if (!modeCfg.maxBlockquoteDepth || modeCfg.maxBlockquoteDepth >= state.quote) {
|
||||||
|
styles.push(formatting + "-" + state.formatting[i] + "-" + state.quote);
|
||||||
|
} else {
|
||||||
|
styles.push("error");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.taskOpen) {
|
||||||
|
styles.push("meta");
|
||||||
|
return styles.length ? styles.join(' ') : null;
|
||||||
|
}
|
||||||
|
if (state.taskClosed) {
|
||||||
|
styles.push("property");
|
||||||
|
return styles.length ? styles.join(' ') : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.linkHref) {
|
||||||
|
styles.push(linkhref);
|
||||||
|
return styles.length ? styles.join(' ') : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.strong) { styles.push(strong); }
|
||||||
|
if (state.em) { styles.push(em); }
|
||||||
|
if (state.strikethrough) { styles.push(strikethrough); }
|
||||||
|
|
||||||
|
if (state.linkText) { styles.push(linktext); }
|
||||||
|
|
||||||
|
if (state.code) { styles.push(code); }
|
||||||
|
|
||||||
|
if (state.header) { styles.push(header); styles.push(header + "-" + state.header); }
|
||||||
|
|
||||||
|
if (state.quote) {
|
||||||
|
styles.push(quote);
|
||||||
|
|
||||||
|
// Add `quote-#` where the maximum for `#` is modeCfg.maxBlockquoteDepth
|
||||||
|
if (!modeCfg.maxBlockquoteDepth || modeCfg.maxBlockquoteDepth >= state.quote) {
|
||||||
|
styles.push(quote + "-" + state.quote);
|
||||||
|
} else {
|
||||||
|
styles.push(quote + "-" + modeCfg.maxBlockquoteDepth);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.list !== false) {
|
||||||
|
var listMod = (state.listDepth - 1) % 3;
|
||||||
|
if (!listMod) {
|
||||||
|
styles.push(list1);
|
||||||
|
} else if (listMod === 1) {
|
||||||
|
styles.push(list2);
|
||||||
|
} else {
|
||||||
|
styles.push(list3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.trailingSpaceNewLine) {
|
||||||
|
styles.push("trailing-space-new-line");
|
||||||
|
} else if (state.trailingSpace) {
|
||||||
|
styles.push("trailing-space-" + (state.trailingSpace % 2 ? "a" : "b"));
|
||||||
|
}
|
||||||
|
|
||||||
|
return styles.length ? styles.join(' ') : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleText(stream, state) {
|
||||||
|
if (stream.match(textRE, true)) {
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
function inlineNormal(stream, state) {
|
||||||
|
var style = state.text(stream, state);
|
||||||
|
if (typeof style !== 'undefined')
|
||||||
|
return style;
|
||||||
|
|
||||||
|
if (state.list) { // List marker (*, +, -, 1., etc)
|
||||||
|
state.list = null;
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.taskList) {
|
||||||
|
var taskOpen = stream.match(taskListRE, true)[1] !== "x";
|
||||||
|
if (taskOpen) state.taskOpen = true;
|
||||||
|
else state.taskClosed = true;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "task";
|
||||||
|
state.taskList = false;
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
state.taskOpen = false;
|
||||||
|
state.taskClosed = false;
|
||||||
|
|
||||||
|
if (state.header && stream.match(/^#+$/, true)) {
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "header";
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get sol() value now, before character is consumed
|
||||||
|
var sol = stream.sol();
|
||||||
|
|
||||||
|
var ch = stream.next();
|
||||||
|
|
||||||
|
if (ch === '\\') {
|
||||||
|
stream.next();
|
||||||
|
if (modeCfg.highlightFormatting) {
|
||||||
|
var type = getType(state);
|
||||||
|
return type ? type + " formatting-escape" : "formatting-escape";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Matches link titles present on next line
|
||||||
|
if (state.linkTitle) {
|
||||||
|
state.linkTitle = false;
|
||||||
|
var matchCh = ch;
|
||||||
|
if (ch === '(') {
|
||||||
|
matchCh = ')';
|
||||||
|
}
|
||||||
|
matchCh = (matchCh+'').replace(/([.?*+^$[\]\\(){}|-])/g, "\\$1");
|
||||||
|
var regex = '^\\s*(?:[^' + matchCh + '\\\\]+|\\\\\\\\|\\\\.)' + matchCh;
|
||||||
|
if (stream.match(new RegExp(regex), true)) {
|
||||||
|
return linkhref;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If this block is changed, it may need to be updated in GFM mode
|
||||||
|
if (ch === '`') {
|
||||||
|
var previousFormatting = state.formatting;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "code";
|
||||||
|
var t = getType(state);
|
||||||
|
var before = stream.pos;
|
||||||
|
stream.eatWhile('`');
|
||||||
|
var difference = 1 + stream.pos - before;
|
||||||
|
if (!state.code) {
|
||||||
|
codeDepth = difference;
|
||||||
|
state.code = true;
|
||||||
|
return getType(state);
|
||||||
|
} else {
|
||||||
|
if (difference === codeDepth) { // Must be exact
|
||||||
|
state.code = false;
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
state.formatting = previousFormatting;
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
} else if (state.code) {
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === '!' && stream.match(/\[[^\]]*\] ?(?:\(|\[)/, false)) {
|
||||||
|
stream.match(/\[[^\]]*\]/);
|
||||||
|
state.inline = state.f = linkHref;
|
||||||
|
return image;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === '[' && stream.match(/.*\](\(| ?\[)/, false)) {
|
||||||
|
state.linkText = true;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link";
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === ']' && state.linkText) {
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link";
|
||||||
|
var type = getType(state);
|
||||||
|
state.linkText = false;
|
||||||
|
state.inline = state.f = linkHref;
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === '<' && stream.match(/^(https?|ftps?):\/\/(?:[^\\>]|\\.)+>/, false)) {
|
||||||
|
state.f = state.inline = linkInline;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link";
|
||||||
|
var type = getType(state);
|
||||||
|
if (type){
|
||||||
|
type += " ";
|
||||||
|
} else {
|
||||||
|
type = "";
|
||||||
|
}
|
||||||
|
return type + linkinline;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === '<' && stream.match(/^[^> \\]+@(?:[^\\>]|\\.)+>/, false)) {
|
||||||
|
state.f = state.inline = linkInline;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link";
|
||||||
|
var type = getType(state);
|
||||||
|
if (type){
|
||||||
|
type += " ";
|
||||||
|
} else {
|
||||||
|
type = "";
|
||||||
|
}
|
||||||
|
return type + linkemail;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === '<' && stream.match(/^\w/, false)) {
|
||||||
|
if (stream.string.indexOf(">") != -1) {
|
||||||
|
var atts = stream.string.substring(1,stream.string.indexOf(">"));
|
||||||
|
if (/markdown\s*=\s*('|"){0,1}1('|"){0,1}/.test(atts)) {
|
||||||
|
state.md_inside = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stream.backUp(1);
|
||||||
|
state.htmlState = CodeMirror.startState(htmlMode);
|
||||||
|
return switchBlock(stream, state, htmlBlock);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === '<' && stream.match(/^\/\w*?>/)) {
|
||||||
|
state.md_inside = false;
|
||||||
|
return "tag";
|
||||||
|
}
|
||||||
|
|
||||||
|
var ignoreUnderscore = false;
|
||||||
|
if (!modeCfg.underscoresBreakWords) {
|
||||||
|
if (ch === '_' && stream.peek() !== '_' && stream.match(/(\w)/, false)) {
|
||||||
|
var prevPos = stream.pos - 2;
|
||||||
|
if (prevPos >= 0) {
|
||||||
|
var prevCh = stream.string.charAt(prevPos);
|
||||||
|
if (prevCh !== '_' && prevCh.match(/(\w)/, false)) {
|
||||||
|
ignoreUnderscore = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (ch === '*' || (ch === '_' && !ignoreUnderscore)) {
|
||||||
|
if (sol && stream.peek() === ' ') {
|
||||||
|
// Do nothing, surrounded by newline and space
|
||||||
|
} else if (state.strong === ch && stream.eat(ch)) { // Remove STRONG
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "strong";
|
||||||
|
var t = getType(state);
|
||||||
|
state.strong = false;
|
||||||
|
return t;
|
||||||
|
} else if (!state.strong && stream.eat(ch)) { // Add STRONG
|
||||||
|
state.strong = ch;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "strong";
|
||||||
|
return getType(state);
|
||||||
|
} else if (state.em === ch) { // Remove EM
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "em";
|
||||||
|
var t = getType(state);
|
||||||
|
state.em = false;
|
||||||
|
return t;
|
||||||
|
} else if (!state.em) { // Add EM
|
||||||
|
state.em = ch;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "em";
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
} else if (ch === ' ') {
|
||||||
|
if (stream.eat('*') || stream.eat('_')) { // Probably surrounded by spaces
|
||||||
|
if (stream.peek() === ' ') { // Surrounded by spaces, ignore
|
||||||
|
return getType(state);
|
||||||
|
} else { // Not surrounded by spaces, back up pointer
|
||||||
|
stream.backUp(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (modeCfg.strikethrough) {
|
||||||
|
if (ch === '~' && stream.eatWhile(ch)) {
|
||||||
|
if (state.strikethrough) {// Remove strikethrough
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "strikethrough";
|
||||||
|
var t = getType(state);
|
||||||
|
state.strikethrough = false;
|
||||||
|
return t;
|
||||||
|
} else if (stream.match(/^[^\s]/, false)) {// Add strikethrough
|
||||||
|
state.strikethrough = true;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "strikethrough";
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
} else if (ch === ' ') {
|
||||||
|
if (stream.match(/^~~/, true)) { // Probably surrounded by space
|
||||||
|
if (stream.peek() === ' ') { // Surrounded by spaces, ignore
|
||||||
|
return getType(state);
|
||||||
|
} else { // Not surrounded by spaces, back up pointer
|
||||||
|
stream.backUp(2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch === ' ') {
|
||||||
|
if (stream.match(/ +$/, false)) {
|
||||||
|
state.trailingSpace++;
|
||||||
|
} else if (state.trailingSpace) {
|
||||||
|
state.trailingSpaceNewLine = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
function linkInline(stream, state) {
|
||||||
|
var ch = stream.next();
|
||||||
|
|
||||||
|
if (ch === ">") {
|
||||||
|
state.f = state.inline = inlineNormal;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link";
|
||||||
|
var type = getType(state);
|
||||||
|
if (type){
|
||||||
|
type += " ";
|
||||||
|
} else {
|
||||||
|
type = "";
|
||||||
|
}
|
||||||
|
return type + linkinline;
|
||||||
|
}
|
||||||
|
|
||||||
|
stream.match(/^[^>]+/, true);
|
||||||
|
|
||||||
|
return linkinline;
|
||||||
|
}
|
||||||
|
|
||||||
|
function linkHref(stream, state) {
|
||||||
|
// Check if space, and return NULL if so (to avoid marking the space)
|
||||||
|
if(stream.eatSpace()){
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
var ch = stream.next();
|
||||||
|
if (ch === '(' || ch === '[') {
|
||||||
|
state.f = state.inline = getLinkHrefInside(ch === "(" ? ")" : "]");
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link-string";
|
||||||
|
state.linkHref = true;
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
return 'error';
|
||||||
|
}
|
||||||
|
|
||||||
|
function getLinkHrefInside(endChar) {
|
||||||
|
return function(stream, state) {
|
||||||
|
var ch = stream.next();
|
||||||
|
|
||||||
|
if (ch === endChar) {
|
||||||
|
state.f = state.inline = inlineNormal;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link-string";
|
||||||
|
var returnState = getType(state);
|
||||||
|
state.linkHref = false;
|
||||||
|
return returnState;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stream.match(inlineRE(endChar), true)) {
|
||||||
|
stream.backUp(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
state.linkHref = true;
|
||||||
|
return getType(state);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function footnoteLink(stream, state) {
|
||||||
|
if (stream.match(/^[^\]]*\]:/, false)) {
|
||||||
|
state.f = footnoteLinkInside;
|
||||||
|
stream.next(); // Consume [
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link";
|
||||||
|
state.linkText = true;
|
||||||
|
return getType(state);
|
||||||
|
}
|
||||||
|
return switchInline(stream, state, inlineNormal);
|
||||||
|
}
|
||||||
|
|
||||||
|
function footnoteLinkInside(stream, state) {
|
||||||
|
if (stream.match(/^\]:/, true)) {
|
||||||
|
state.f = state.inline = footnoteUrl;
|
||||||
|
if (modeCfg.highlightFormatting) state.formatting = "link";
|
||||||
|
var returnType = getType(state);
|
||||||
|
state.linkText = false;
|
||||||
|
return returnType;
|
||||||
|
}
|
||||||
|
|
||||||
|
stream.match(/^[^\]]+/, true);
|
||||||
|
|
||||||
|
return linktext;
|
||||||
|
}
|
||||||
|
|
||||||
|
function footnoteUrl(stream, state) {
|
||||||
|
// Check if space, and return NULL if so (to avoid marking the space)
|
||||||
|
if(stream.eatSpace()){
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
// Match URL
|
||||||
|
stream.match(/^[^\s]+/, true);
|
||||||
|
// Check for link title
|
||||||
|
if (stream.peek() === undefined) { // End of line, set flag to check next line
|
||||||
|
state.linkTitle = true;
|
||||||
|
} else { // More content on line, check if link title
|
||||||
|
stream.match(/^(?:\s+(?:"(?:[^"\\]|\\\\|\\.)+"|'(?:[^'\\]|\\\\|\\.)+'|\((?:[^)\\]|\\\\|\\.)+\)))?/, true);
|
||||||
|
}
|
||||||
|
state.f = state.inline = inlineNormal;
|
||||||
|
return linkhref;
|
||||||
|
}
|
||||||
|
|
||||||
|
var savedInlineRE = [];
|
||||||
|
function inlineRE(endChar) {
|
||||||
|
if (!savedInlineRE[endChar]) {
|
||||||
|
// Escape endChar for RegExp (taken from http://stackoverflow.com/a/494122/526741)
|
||||||
|
endChar = (endChar+'').replace(/([.?*+^$[\]\\(){}|-])/g, "\\$1");
|
||||||
|
// Match any non-endChar, escaped character, as well as the closing
|
||||||
|
// endChar.
|
||||||
|
savedInlineRE[endChar] = new RegExp('^(?:[^\\\\]|\\\\.)*?(' + endChar + ')');
|
||||||
|
}
|
||||||
|
return savedInlineRE[endChar];
|
||||||
|
}
|
||||||
|
|
||||||
|
var mode = {
|
||||||
|
startState: function() {
|
||||||
|
return {
|
||||||
|
f: blockNormal,
|
||||||
|
|
||||||
|
prevLineHasContent: false,
|
||||||
|
thisLineHasContent: false,
|
||||||
|
|
||||||
|
block: blockNormal,
|
||||||
|
htmlState: null,
|
||||||
|
indentation: 0,
|
||||||
|
|
||||||
|
inline: inlineNormal,
|
||||||
|
text: handleText,
|
||||||
|
|
||||||
|
formatting: false,
|
||||||
|
linkText: false,
|
||||||
|
linkHref: false,
|
||||||
|
linkTitle: false,
|
||||||
|
em: false,
|
||||||
|
strong: false,
|
||||||
|
header: 0,
|
||||||
|
taskList: false,
|
||||||
|
list: false,
|
||||||
|
listDepth: 0,
|
||||||
|
quote: 0,
|
||||||
|
trailingSpace: 0,
|
||||||
|
trailingSpaceNewLine: false,
|
||||||
|
strikethrough: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
copyState: function(s) {
|
||||||
|
return {
|
||||||
|
f: s.f,
|
||||||
|
|
||||||
|
prevLineHasContent: s.prevLineHasContent,
|
||||||
|
thisLineHasContent: s.thisLineHasContent,
|
||||||
|
|
||||||
|
block: s.block,
|
||||||
|
htmlState: s.htmlState && CodeMirror.copyState(htmlMode, s.htmlState),
|
||||||
|
indentation: s.indentation,
|
||||||
|
|
||||||
|
localMode: s.localMode,
|
||||||
|
localState: s.localMode ? CodeMirror.copyState(s.localMode, s.localState) : null,
|
||||||
|
|
||||||
|
inline: s.inline,
|
||||||
|
text: s.text,
|
||||||
|
formatting: false,
|
||||||
|
linkTitle: s.linkTitle,
|
||||||
|
em: s.em,
|
||||||
|
strong: s.strong,
|
||||||
|
strikethrough: s.strikethrough,
|
||||||
|
header: s.header,
|
||||||
|
taskList: s.taskList,
|
||||||
|
list: s.list,
|
||||||
|
listDepth: s.listDepth,
|
||||||
|
quote: s.quote,
|
||||||
|
trailingSpace: s.trailingSpace,
|
||||||
|
trailingSpaceNewLine: s.trailingSpaceNewLine,
|
||||||
|
md_inside: s.md_inside
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
token: function(stream, state) {
|
||||||
|
|
||||||
|
// Reset state.formatting
|
||||||
|
state.formatting = false;
|
||||||
|
|
||||||
|
if (stream.sol()) {
|
||||||
|
var forceBlankLine = !!state.header;
|
||||||
|
|
||||||
|
// Reset state.header
|
||||||
|
state.header = 0;
|
||||||
|
|
||||||
|
if (stream.match(/^\s*$/, true) || forceBlankLine) {
|
||||||
|
state.prevLineHasContent = false;
|
||||||
|
blankLine(state);
|
||||||
|
return forceBlankLine ? this.token(stream, state) : null;
|
||||||
|
} else {
|
||||||
|
state.prevLineHasContent = state.thisLineHasContent;
|
||||||
|
state.thisLineHasContent = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset state.taskList
|
||||||
|
state.taskList = false;
|
||||||
|
|
||||||
|
// Reset state.code
|
||||||
|
state.code = false;
|
||||||
|
|
||||||
|
// Reset state.trailingSpace
|
||||||
|
state.trailingSpace = 0;
|
||||||
|
state.trailingSpaceNewLine = false;
|
||||||
|
|
||||||
|
state.f = state.block;
|
||||||
|
var indentation = stream.match(/^\s*/, true)[0].replace(/\t/g, ' ').length;
|
||||||
|
var difference = Math.floor((indentation - state.indentation) / 4) * 4;
|
||||||
|
if (difference > 4) difference = 4;
|
||||||
|
var adjustedIndentation = state.indentation + difference;
|
||||||
|
state.indentationDiff = adjustedIndentation - state.indentation;
|
||||||
|
state.indentation = adjustedIndentation;
|
||||||
|
if (indentation > 0) return null;
|
||||||
|
}
|
||||||
|
return state.f(stream, state);
|
||||||
|
},
|
||||||
|
|
||||||
|
innerMode: function(state) {
|
||||||
|
if (state.block == htmlBlock) return {state: state.htmlState, mode: htmlMode};
|
||||||
|
if (state.localState) return {state: state.localState, mode: state.localMode};
|
||||||
|
return {state: state, mode: mode};
|
||||||
|
},
|
||||||
|
|
||||||
|
blankLine: blankLine,
|
||||||
|
|
||||||
|
getType: getType,
|
||||||
|
|
||||||
|
fold: "markdown"
|
||||||
|
};
|
||||||
|
return mode;
|
||||||
|
}, "xml");
|
||||||
|
|
||||||
|
CodeMirror.defineMIME("text/x-markdown", "markdown");
|
||||||
|
|
||||||
|
});
|
226
core/vendor/codemirror/mode/php/php.js
vendored
Normal file
226
core/vendor/codemirror/mode/php/php.js
vendored
Normal file
File diff suppressed because one or more lines are too long
95
core/vendor/codemirror/mode/xml/xml.js
vendored
95
core/vendor/codemirror/mode/xml/xml.js
vendored
@ -1,5 +1,5 @@
|
|||||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||||
|
|
||||||
(function(mod) {
|
(function(mod) {
|
||||||
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
||||||
@ -11,7 +11,13 @@
|
|||||||
})(function(CodeMirror) {
|
})(function(CodeMirror) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var htmlConfig = {
|
CodeMirror.defineMode("xml", function(config, parserConfig) {
|
||||||
|
var indentUnit = config.indentUnit;
|
||||||
|
var multilineTagIndentFactor = parserConfig.multilineTagIndentFactor || 1;
|
||||||
|
var multilineTagIndentPastTag = parserConfig.multilineTagIndentPastTag;
|
||||||
|
if (multilineTagIndentPastTag == null) multilineTagIndentPastTag = true;
|
||||||
|
|
||||||
|
var Kludges = parserConfig.htmlMode ? {
|
||||||
autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,
|
autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,
|
||||||
'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true,
|
'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true,
|
||||||
'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true,
|
'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true,
|
||||||
@ -43,25 +49,16 @@ var htmlConfig = {
|
|||||||
allowUnquoted: true,
|
allowUnquoted: true,
|
||||||
allowMissing: true,
|
allowMissing: true,
|
||||||
caseFold: true
|
caseFold: true
|
||||||
}
|
} : {
|
||||||
|
|
||||||
var xmlConfig = {
|
|
||||||
autoSelfClosers: {},
|
autoSelfClosers: {},
|
||||||
implicitlyClosed: {},
|
implicitlyClosed: {},
|
||||||
contextGrabbers: {},
|
contextGrabbers: {},
|
||||||
doNotIndent: {},
|
doNotIndent: {},
|
||||||
allowUnquoted: false,
|
allowUnquoted: false,
|
||||||
allowMissing: false,
|
allowMissing: false,
|
||||||
allowMissingTagName: false,
|
|
||||||
caseFold: false
|
caseFold: false
|
||||||
}
|
};
|
||||||
|
var alignCDATA = parserConfig.alignCDATA;
|
||||||
CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|
||||||
var indentUnit = editorConf.indentUnit
|
|
||||||
var config = {}
|
|
||||||
var defaults = config_.htmlMode ? htmlConfig : xmlConfig
|
|
||||||
for (var prop in defaults) config[prop] = defaults[prop]
|
|
||||||
for (var prop in config_) config[prop] = config_[prop]
|
|
||||||
|
|
||||||
// Return variables for tokenizers
|
// Return variables for tokenizers
|
||||||
var type, setStyle;
|
var type, setStyle;
|
||||||
@ -112,7 +109,6 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
inText.isInText = true;
|
|
||||||
|
|
||||||
function inTag(stream, state) {
|
function inTag(stream, state) {
|
||||||
var ch = stream.next();
|
var ch = stream.next();
|
||||||
@ -163,9 +159,8 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
stream.next();
|
stream.next();
|
||||||
}
|
}
|
||||||
return style;
|
return style;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
function doctype(depth) {
|
function doctype(depth) {
|
||||||
return function(stream, state) {
|
return function(stream, state) {
|
||||||
var ch;
|
var ch;
|
||||||
@ -192,7 +187,7 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
this.tagName = tagName;
|
this.tagName = tagName;
|
||||||
this.indent = state.indented;
|
this.indent = state.indented;
|
||||||
this.startOfLine = startOfLine;
|
this.startOfLine = startOfLine;
|
||||||
if (config.doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.noIndent))
|
if (Kludges.doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.noIndent))
|
||||||
this.noIndent = true;
|
this.noIndent = true;
|
||||||
}
|
}
|
||||||
function popContext(state) {
|
function popContext(state) {
|
||||||
@ -205,8 +200,8 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
parentTagName = state.context.tagName;
|
parentTagName = state.context.tagName;
|
||||||
if (!config.contextGrabbers.hasOwnProperty(parentTagName) ||
|
if (!Kludges.contextGrabbers.hasOwnProperty(parentTagName) ||
|
||||||
!config.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) {
|
!Kludges.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
popContext(state);
|
popContext(state);
|
||||||
@ -228,9 +223,6 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
state.tagName = stream.current();
|
state.tagName = stream.current();
|
||||||
setStyle = "tag";
|
setStyle = "tag";
|
||||||
return attrState;
|
return attrState;
|
||||||
} else if (config.allowMissingTagName && type == "endTag") {
|
|
||||||
setStyle = "tag bracket";
|
|
||||||
return attrState(type, stream, state);
|
|
||||||
} else {
|
} else {
|
||||||
setStyle = "error";
|
setStyle = "error";
|
||||||
return tagNameState;
|
return tagNameState;
|
||||||
@ -240,18 +232,15 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
if (type == "word") {
|
if (type == "word") {
|
||||||
var tagName = stream.current();
|
var tagName = stream.current();
|
||||||
if (state.context && state.context.tagName != tagName &&
|
if (state.context && state.context.tagName != tagName &&
|
||||||
config.implicitlyClosed.hasOwnProperty(state.context.tagName))
|
Kludges.implicitlyClosed.hasOwnProperty(state.context.tagName))
|
||||||
popContext(state);
|
popContext(state);
|
||||||
if ((state.context && state.context.tagName == tagName) || config.matchClosing === false) {
|
if (state.context && state.context.tagName == tagName) {
|
||||||
setStyle = "tag";
|
setStyle = "tag";
|
||||||
return closeState;
|
return closeState;
|
||||||
} else {
|
} else {
|
||||||
setStyle = "tag error";
|
setStyle = "tag error";
|
||||||
return closeStateErr;
|
return closeStateErr;
|
||||||
}
|
}
|
||||||
} else if (config.allowMissingTagName && type == "endTag") {
|
|
||||||
setStyle = "tag bracket";
|
|
||||||
return closeState(type, stream, state);
|
|
||||||
} else {
|
} else {
|
||||||
setStyle = "error";
|
setStyle = "error";
|
||||||
return closeStateErr;
|
return closeStateErr;
|
||||||
@ -279,7 +268,7 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
var tagName = state.tagName, tagStart = state.tagStart;
|
var tagName = state.tagName, tagStart = state.tagStart;
|
||||||
state.tagName = state.tagStart = null;
|
state.tagName = state.tagStart = null;
|
||||||
if (type == "selfcloseTag" ||
|
if (type == "selfcloseTag" ||
|
||||||
config.autoSelfClosers.hasOwnProperty(tagName)) {
|
Kludges.autoSelfClosers.hasOwnProperty(tagName)) {
|
||||||
maybePopContext(state, tagName);
|
maybePopContext(state, tagName);
|
||||||
} else {
|
} else {
|
||||||
maybePopContext(state, tagName);
|
maybePopContext(state, tagName);
|
||||||
@ -292,12 +281,12 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
}
|
}
|
||||||
function attrEqState(type, stream, state) {
|
function attrEqState(type, stream, state) {
|
||||||
if (type == "equals") return attrValueState;
|
if (type == "equals") return attrValueState;
|
||||||
if (!config.allowMissing) setStyle = "error";
|
if (!Kludges.allowMissing) setStyle = "error";
|
||||||
return attrState(type, stream, state);
|
return attrState(type, stream, state);
|
||||||
}
|
}
|
||||||
function attrValueState(type, stream, state) {
|
function attrValueState(type, stream, state) {
|
||||||
if (type == "string") return attrContinuedState;
|
if (type == "string") return attrContinuedState;
|
||||||
if (type == "word" && config.allowUnquoted) {setStyle = "string"; return attrState;}
|
if (type == "word" && Kludges.allowUnquoted) {setStyle = "string"; return attrState;}
|
||||||
setStyle = "error";
|
setStyle = "error";
|
||||||
return attrState(type, stream, state);
|
return attrState(type, stream, state);
|
||||||
}
|
}
|
||||||
@ -307,14 +296,12 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
startState: function(baseIndent) {
|
startState: function() {
|
||||||
var state = {tokenize: inText,
|
return {tokenize: inText,
|
||||||
state: baseState,
|
state: baseState,
|
||||||
indented: baseIndent || 0,
|
indented: 0,
|
||||||
tagName: null, tagStart: null,
|
tagName: null, tagStart: null,
|
||||||
context: null}
|
context: null};
|
||||||
if (baseIndent != null) state.baseIndent = baseIndent
|
|
||||||
return state
|
|
||||||
},
|
},
|
||||||
|
|
||||||
token: function(stream, state) {
|
token: function(stream, state) {
|
||||||
@ -347,19 +334,19 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0;
|
return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0;
|
||||||
// Indent the starts of attribute names.
|
// Indent the starts of attribute names.
|
||||||
if (state.tagName) {
|
if (state.tagName) {
|
||||||
if (config.multilineTagIndentPastTag !== false)
|
if (multilineTagIndentPastTag)
|
||||||
return state.tagStart + state.tagName.length + 2;
|
return state.tagStart + state.tagName.length + 2;
|
||||||
else
|
else
|
||||||
return state.tagStart + indentUnit * (config.multilineTagIndentFactor || 1);
|
return state.tagStart + indentUnit * multilineTagIndentFactor;
|
||||||
}
|
}
|
||||||
if (config.alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0;
|
if (alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0;
|
||||||
var tagAfter = textAfter && /^<(\/)?([\w_:\.-]*)/.exec(textAfter);
|
var tagAfter = textAfter && /^<(\/)?([\w_:\.-]*)/.exec(textAfter);
|
||||||
if (tagAfter && tagAfter[1]) { // Closing tag spotted
|
if (tagAfter && tagAfter[1]) { // Closing tag spotted
|
||||||
while (context) {
|
while (context) {
|
||||||
if (context.tagName == tagAfter[2]) {
|
if (context.tagName == tagAfter[2]) {
|
||||||
context = context.prev;
|
context = context.prev;
|
||||||
break;
|
break;
|
||||||
} else if (config.implicitlyClosed.hasOwnProperty(context.tagName)) {
|
} else if (Kludges.implicitlyClosed.hasOwnProperty(context.tagName)) {
|
||||||
context = context.prev;
|
context = context.prev;
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
@ -367,41 +354,25 @@ CodeMirror.defineMode("xml", function(editorConf, config_) {
|
|||||||
}
|
}
|
||||||
} else if (tagAfter) { // Opening tag spotted
|
} else if (tagAfter) { // Opening tag spotted
|
||||||
while (context) {
|
while (context) {
|
||||||
var grabbers = config.contextGrabbers[context.tagName];
|
var grabbers = Kludges.contextGrabbers[context.tagName];
|
||||||
if (grabbers && grabbers.hasOwnProperty(tagAfter[2]))
|
if (grabbers && grabbers.hasOwnProperty(tagAfter[2]))
|
||||||
context = context.prev;
|
context = context.prev;
|
||||||
else
|
else
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (context && context.prev && !context.startOfLine)
|
while (context && !context.startOfLine)
|
||||||
context = context.prev;
|
context = context.prev;
|
||||||
if (context) return context.indent + indentUnit;
|
if (context) return context.indent + indentUnit;
|
||||||
else return state.baseIndent || 0;
|
else return 0;
|
||||||
},
|
},
|
||||||
|
|
||||||
electricInput: /<\/[\s\w:]+>$/,
|
electricInput: /<\/[\s\w:]+>$/,
|
||||||
blockCommentStart: "<!--",
|
blockCommentStart: "<!--",
|
||||||
blockCommentEnd: "-->",
|
blockCommentEnd: "-->",
|
||||||
|
|
||||||
configuration: config.htmlMode ? "html" : "xml",
|
configuration: parserConfig.htmlMode ? "html" : "xml",
|
||||||
helperType: config.htmlMode ? "html" : "xml",
|
helperType: parserConfig.htmlMode ? "html" : "xml"
|
||||||
|
|
||||||
skipAttribute: function(state) {
|
|
||||||
if (state.state == attrValueState)
|
|
||||||
state.state = attrState
|
|
||||||
},
|
|
||||||
|
|
||||||
xmlCurrentTag: function(state) {
|
|
||||||
return state.tagName ? {name: state.tagName, close: state.type == "closeTag"} : null
|
|
||||||
},
|
|
||||||
|
|
||||||
xmlCurrentContext: function(state) {
|
|
||||||
var context = []
|
|
||||||
for (var cx = state.context; cx; cx = cx.prev)
|
|
||||||
if (cx.tagName) context.push(cx.tagName)
|
|
||||||
return context.reverse()
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
2
core/vendor/tinymce/init.js
vendored
2
core/vendor/tinymce/init.js
vendored
@ -34,7 +34,7 @@ tinymce.init({
|
|||||||
width: 800, // Default value is 800
|
width: 800, // Default value is 800
|
||||||
height: 500, // Default value is 550
|
height: 500, // Default value is 550
|
||||||
cssFiles: [
|
cssFiles: [
|
||||||
'theme/neat.css'
|
'theme/3024-day.css'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// Cibles de la target
|
// Cibles de la target
|
||||||
|
Loading…
Reference in New Issue
Block a user