mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 13:41:01 +01:00
55b18b4897
commit 95479c8ad744db48386a5c78e54ef8da80e9120b Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:26:32 2021 -0400 chore(version): bump version to 4.2.1 commit6956f51cae
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:24:21 2021 -0400 fix(Makefile): `vendor-update` Update the `vendor-update` build target to run `go mod vendor` after updating dependencies. commit0aca411279
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:23:24 2021 -0400 chore(deps): update dependencies commite847956b02
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 08:26:51 2021 -0400 chore(deps): build updates - Upgrade `go` to `1.16.3` - Attempt to fix build errors regarding dependencies
67 lines
2.7 KiB
Go
67 lines
2.7 KiB
Go
package m
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
var MonkeyC = internal.Register(MustNewLazyLexer(
|
|
&Config{
|
|
Name: "MonkeyC",
|
|
Aliases: []string{"monkeyc"},
|
|
Filenames: []string{"*.mc"},
|
|
MimeTypes: []string{"text/x-monkeyc"},
|
|
},
|
|
monkeyCRules,
|
|
))
|
|
|
|
func monkeyCRules() Rules {
|
|
return Rules{
|
|
"root": {
|
|
{`[^\S\n]+`, Text, nil},
|
|
{`\n`, Text, nil},
|
|
{`//(\n|[\w\W]*?[^\\]\n)`, CommentSingle, nil},
|
|
{`/(\\\n)?[*][\w\W]*?[*](\\\n)?/`, CommentMultiline, nil},
|
|
{`/(\\\n)?[*][\w\W]*`, CommentMultiline, nil},
|
|
{`:[a-zA-Z_][\w_\.]*`, StringSymbol, nil},
|
|
{`[{}\[\]\(\),;:\.]`, Punctuation, nil},
|
|
{`[&~\|\^!+\-*\/%=?]`, Operator, nil},
|
|
{`=>|[+-]=|&&|\|\||>>|<<|[<>]=?|[!=]=`, Operator, nil},
|
|
{`\b(and|or|instanceof|has|extends|new)`, OperatorWord, nil},
|
|
{Words(``, `\b`, `NaN`, `null`, `true`, `false`), KeywordConstant, nil},
|
|
{`(using)((?:\s|\\\\s)+)`, ByGroups(KeywordNamespace, Text), Push("import")},
|
|
{`(class)((?:\s|\\\\s)+)`, ByGroups(KeywordDeclaration, Text), Push("class")},
|
|
{`(function)((?:\s|\\\\s)+)`, ByGroups(KeywordDeclaration, Text), Push("function")},
|
|
{`(module)((?:\s|\\\\s)+)`, ByGroups(KeywordDeclaration, Text), Push("module")},
|
|
{`\b(if|else|for|switch|case|while|break|continue|default|do|try|catch|finally|return|throw|extends|function)\b`, Keyword, nil},
|
|
{`\b(const|enum|hidden|public|protected|private|static)\b`, KeywordType, nil},
|
|
{`\bvar\b`, KeywordDeclaration, nil},
|
|
{`\b(Activity(Monitor|Recording)?|Ant(Plus)?|Application|Attention|Background|Communications|Cryptography|FitContributor|Graphics|Gregorian|Lang|Math|Media|Persisted(Content|Locations)|Position|Properties|Sensor(History|Logging)?|Storage|StringUtil|System|Test|Time(r)?|Toybox|UserProfile|WatchUi|Rez|Drawables|Strings|Fonts|method)\b`, NameBuiltin, nil},
|
|
{`\b(me|self|\$)\b`, NameBuiltinPseudo, nil},
|
|
{`"(\\\\|\\"|[^"])*"`, LiteralStringDouble, nil},
|
|
{`'(\\\\|\\'|[^''])*'`, LiteralStringSingle, nil},
|
|
{`-?(0x[0-9a-fA-F]+l?)`, NumberHex, nil},
|
|
{`-?([0-9]+(\.[0-9]+[df]?|[df]))\b`, NumberFloat, nil},
|
|
{`-?([0-9]+l?)`, NumberInteger, nil},
|
|
{`[a-zA-Z_]\w*`, Name, nil},
|
|
},
|
|
"import": {
|
|
{`([a-zA-Z_][\w_\.]*)(?:(\s+)(as)(\s+)([a-zA-Z_][\w_]*))?`, ByGroups(NameNamespace, Text, KeywordNamespace, Text, NameNamespace), nil},
|
|
Default(Pop(1)),
|
|
},
|
|
"class": {
|
|
{`([a-zA-Z_][\w_\.]*)(?:(\s+)(extends)(\s+)([a-zA-Z_][\w_\.]*))?`, ByGroups(NameClass, Text, KeywordDeclaration, Text, NameClass), nil},
|
|
Default(Pop(1)),
|
|
},
|
|
"function": {
|
|
{`initialize`, NameFunctionMagic, nil},
|
|
{`[a-zA-Z_][\w_\.]*`, NameFunction, nil},
|
|
Default(Pop(1)),
|
|
},
|
|
"module": {
|
|
{`[a-zA-Z_][\w_\.]*`, NameNamespace, nil},
|
|
Default(Pop(1)),
|
|
},
|
|
}
|
|
}
|