mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
111 lines
4.1 KiB
JavaScript
111 lines
4.1 KiB
JavaScript
|
define(function(require, exports, module) {
|
||
|
var oop = require("../lib/oop");
|
||
|
var DocCommentHighlightRules = require("./doc_comment_highlight_rules").DocCommentHighlightRules;
|
||
|
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
||
|
|
||
|
var GolangHighlightRules = function() {
|
||
|
var keywords = (
|
||
|
"else|break|case|return|goto|if|const|select|" +
|
||
|
"continue|struct|default|switch|for|range|" +
|
||
|
"func|import|package|chan|defer|fallthrough|go|interface|map|range|" +
|
||
|
"select|type|var"
|
||
|
);
|
||
|
var builtinTypes = (
|
||
|
"string|uint8|uint16|uint32|uint64|int8|int16|int32|int64|float32|" +
|
||
|
"float64|complex64|complex128|byte|rune|uint|int|uintptr|bool|error"
|
||
|
);
|
||
|
var builtinFunctions = (
|
||
|
"make|close|new|panic|recover"
|
||
|
);
|
||
|
var builtinConstants = ("nil|true|false|iota");
|
||
|
|
||
|
var keywordMapper = this.createKeywordMapper({
|
||
|
"keyword": keywords,
|
||
|
"constant.language": builtinConstants,
|
||
|
"support.function": builtinFunctions,
|
||
|
"support.type": builtinTypes
|
||
|
}, "identifier");
|
||
|
|
||
|
this.$rules = {
|
||
|
"start" : [
|
||
|
{
|
||
|
token : "comment",
|
||
|
regex : "\\/\\/.*$"
|
||
|
},
|
||
|
DocCommentHighlightRules.getStartRule("doc-start"),
|
||
|
{
|
||
|
token : "comment", // multi line comment
|
||
|
regex : "\\/\\*",
|
||
|
next : "comment"
|
||
|
}, {
|
||
|
token : "string", // single line
|
||
|
regex : '["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'
|
||
|
}, {
|
||
|
token : "string", // single line
|
||
|
regex : '[`](?:[^`]*)[`]'
|
||
|
}, {
|
||
|
token : "string", // multi line string start
|
||
|
merge : true,
|
||
|
regex : '[`](?:[^`]*)$',
|
||
|
next : "bqstring"
|
||
|
}, {
|
||
|
token : "constant.numeric", // rune
|
||
|
regex : "['](?:(?:\\\\.)|(?:[^'\\\\]))[']"
|
||
|
}, {
|
||
|
token : "constant.numeric", // hex
|
||
|
regex : "0[xX][0-9a-fA-F]+\\b"
|
||
|
}, {
|
||
|
token : "constant.numeric", // float
|
||
|
regex : "[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"
|
||
|
}, {
|
||
|
token : keywordMapper,
|
||
|
regex : "[a-zA-Z_$][a-zA-Z0-9_$]*\\b"
|
||
|
}, {
|
||
|
token : "keyword.operator",
|
||
|
regex : "!|\\$|%|&|\\*|\\-\\-|\\-|\\+\\+|\\+|~|==|=|!=|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\|\\||\\?\\:|\\*=|%=|\\+=|\\-=|&=|\\^="
|
||
|
}, {
|
||
|
token : "punctuation.operator",
|
||
|
regex : "\\?|\\:|\\,|\\;|\\."
|
||
|
}, {
|
||
|
token : "paren.lparen",
|
||
|
regex : "[[({]"
|
||
|
}, {
|
||
|
token : "paren.rparen",
|
||
|
regex : "[\\])}]"
|
||
|
}, {
|
||
|
token: "invalid",
|
||
|
regex: "\\s+$"
|
||
|
}, {
|
||
|
token : "text",
|
||
|
regex : "\\s+"
|
||
|
}
|
||
|
],
|
||
|
"comment" : [
|
||
|
{
|
||
|
token : "comment", // closing comment
|
||
|
regex : ".*?\\*\\/",
|
||
|
next : "start"
|
||
|
}, {
|
||
|
token : "comment", // comment spanning whole line
|
||
|
regex : ".+"
|
||
|
}
|
||
|
],
|
||
|
"bqstring" : [
|
||
|
{
|
||
|
token : "string",
|
||
|
regex : '(?:[^`]*)`',
|
||
|
next : "start"
|
||
|
}, {
|
||
|
token : "string",
|
||
|
regex : '.+'
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
this.embedRules(DocCommentHighlightRules, "doc-",
|
||
|
[ DocCommentHighlightRules.getEndRule("start") ]);
|
||
|
};
|
||
|
oop.inherits(GolangHighlightRules, TextHighlightRules);
|
||
|
|
||
|
exports.GolangHighlightRules = GolangHighlightRules;
|
||
|
});
|