You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
711 B
30 lines
711 B
4 years ago
|
package w
|
||
|
|
||
|
import (
|
||
|
. "github.com/alecthomas/chroma" // nolint
|
||
|
"github.com/alecthomas/chroma/lexers/internal"
|
||
|
)
|
||
|
|
||
|
// WDTE lexer.
|
||
|
var WDTE = internal.Register(MustNewLexer(
|
||
|
&Config{
|
||
|
Name: "WDTE",
|
||
|
Filenames: []string{"*.wdte"},
|
||
|
},
|
||
|
Rules{
|
||
|
"root": {
|
||
|
{`\n`, Text, nil},
|
||
|
{`\s+`, Text, nil},
|
||
|
{`\\\n`, Text, nil},
|
||
|
{`#(.*?)\n`, CommentSingle, nil},
|
||
|
{`-?[0-9]+`, LiteralNumberInteger, nil},
|
||
|
{`-?[0-9]*\.[0-9]+`, LiteralNumberFloat, nil},
|
||
|
{`"[^"]*"`, LiteralString, nil},
|
||
|
{`'[^']*'`, LiteralString, nil},
|
||
|
{Words(``, `\b`, `switch`, `default`, `memo`), KeywordReserved, nil},
|
||
|
{`{|}|;|->|=>|\(|\)|\[|\]|\.`, Operator, nil},
|
||
|
{`[^{};()[\].\s]+`, NameVariable, nil},
|
||
|
},
|
||
|
},
|
||
|
))
|