mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-23 02:51:37 +01:00
d6df0a53b5
Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/390 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package i
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
// Io lexer.
|
|
var Io = internal.Register(MustNewLazyLexer(
|
|
&Config{
|
|
Name: "Io",
|
|
Aliases: []string{"io"},
|
|
Filenames: []string{"*.io"},
|
|
MimeTypes: []string{"text/x-iosrc"},
|
|
},
|
|
ioRules,
|
|
))
|
|
|
|
func ioRules() Rules {
|
|
return Rules{
|
|
"root": {
|
|
{`\n`, Text, nil},
|
|
{`\s+`, Text, nil},
|
|
{`//(.*?)\n`, CommentSingle, nil},
|
|
{`#(.*?)\n`, CommentSingle, nil},
|
|
{`/(\\\n)?[*](.|\n)*?[*](\\\n)?/`, CommentMultiline, nil},
|
|
{`/\+`, CommentMultiline, Push("nestedcomment")},
|
|
{`"(\\\\|\\"|[^"])*"`, LiteralString, nil},
|
|
{`::=|:=|=|\(|\)|;|,|\*|-|\+|>|<|@|!|/|\||\^|\.|%|&|\[|\]|\{|\}`, Operator, nil},
|
|
{`(clone|do|doFile|doString|method|for|if|else|elseif|then)\b`, Keyword, nil},
|
|
{`(nil|false|true)\b`, NameConstant, nil},
|
|
{`(Object|list|List|Map|args|Sequence|Coroutine|File)\b`, NameBuiltin, nil},
|
|
{`[a-zA-Z_]\w*`, Name, nil},
|
|
{`(\d+\.?\d*|\d*\.\d+)([eE][+-]?[0-9]+)?`, LiteralNumberFloat, nil},
|
|
{`\d+`, LiteralNumberInteger, nil},
|
|
},
|
|
"nestedcomment": {
|
|
{`[^+/]+`, CommentMultiline, nil},
|
|
{`/\+`, CommentMultiline, Push()},
|
|
{`\+/`, CommentMultiline, Pop(1)},
|
|
{`[+/]`, CommentMultiline, nil},
|
|
},
|
|
}
|
|
}
|