2019-10-27 17:04:31 +01:00
|
|
|
package b
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Brainfuck lexer.
|
2021-04-28 18:35:32 +02:00
|
|
|
var Brainfuck = internal.Register(MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
&Config{
|
|
|
|
Name: "Brainfuck",
|
|
|
|
Aliases: []string{"brainfuck", "bf"},
|
|
|
|
Filenames: []string{"*.bf", "*.b"},
|
|
|
|
MimeTypes: []string{"application/x-brainfuck"},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
brainfuckRules,
|
|
|
|
))
|
|
|
|
|
|
|
|
func brainfuckRules() Rules {
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
"common": {
|
|
|
|
{`[.,]+`, NameTag, nil},
|
|
|
|
{`[+-]+`, NameBuiltin, nil},
|
|
|
|
{`[<>]+`, NameVariable, nil},
|
|
|
|
{`[^.,+\-<>\[\]]+`, Comment, nil},
|
|
|
|
},
|
|
|
|
"root": {
|
|
|
|
{`\[`, Keyword, Push("loop")},
|
|
|
|
{`\]`, Error, nil},
|
|
|
|
Include("common"),
|
|
|
|
},
|
|
|
|
"loop": {
|
|
|
|
{`\[`, Keyword, Push()},
|
|
|
|
{`\]`, Keyword, Pop(1)},
|
|
|
|
Include("common"),
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
}
|
|
|
|
}
|