1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

feat: update to go modules

This commit is contained in:
retgits
2019-04-26 16:39:44 -07:00
parent 66a16af97d
commit e03b65b442
1471 changed files with 207 additions and 466677 deletions

View File

@@ -1,29 +0,0 @@
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},
},
},
))