lychees's picture
Upload 569 files
87b3b3a
raw
history blame contribute delete
914 Bytes
;(function(){
var patterns = [];
patterns.push({
token: "string",
re: /(".*?")/g,
index: 1
});
patterns.push({
token: "number",
re: /([^0-9#a-z])(-?[0-9]+(\.[0-9]+)?)/ig,
index: 2
});
patterns.push({
token: "comment",
re: /(\/\*[\s\S]*?\*\/)/g,
index: 1
});
patterns.push({
token: "comment",
re: /([^:])(\/\/.*)/g,
index: 2
});
var keywords = ["break", "case", "catch", "continue", "default", "delete", "do", "else",
"finally", "for", "function", "if", "in", "instanceof", "new", "return",
"switch", "this", "throw", "try", "typeof", "var", "void", "while", "with", "__proto__",
"true", "false", "null", "NaN", "prototype", "call", "apply", "constructor"];
var kw = new RegExp("(^|\\s|\\.|\\(|!)("+keywords.join("|")+")(?=\\s|\\.|\\(|\\)|\\[|\\]|;|$|,)","gm");
patterns.push({
token: "keyword",
re: kw,
index: 2
});
Syntax.register("js", patterns);
})();