Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
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}, }, }, ))
WDTE lexer.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.