2019-10-27 17:04:31 +01:00
|
|
|
|
package a
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Apl lexer.
|
2021-04-28 18:35:32 +02:00
|
|
|
|
var Apl = internal.Register(MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
|
&Config{
|
|
|
|
|
Name: "APL",
|
|
|
|
|
Aliases: []string{"apl"},
|
|
|
|
|
Filenames: []string{"*.apl"},
|
|
|
|
|
MimeTypes: []string{},
|
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
|
aplRules,
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
func aplRules() Rules {
|
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
|
"root": {
|
|
|
|
|
{`\s+`, Text, nil},
|
|
|
|
|
{`[⍝#].*$`, CommentSingle, nil},
|
|
|
|
|
{`\'((\'\')|[^\'])*\'`, LiteralStringSingle, nil},
|
|
|
|
|
{`"(("")|[^"])*"`, LiteralStringDouble, nil},
|
|
|
|
|
{`[⋄◇()]`, Punctuation, nil},
|
|
|
|
|
{`[\[\];]`, LiteralStringRegex, nil},
|
|
|
|
|
{`⎕[A-Za-zΔ∆⍙][A-Za-zΔ∆⍙_¯0-9]*`, NameFunction, nil},
|
|
|
|
|
{`[A-Za-zΔ∆⍙][A-Za-zΔ∆⍙_¯0-9]*`, NameVariable, nil},
|
|
|
|
|
{`¯?(0[Xx][0-9A-Fa-f]+|[0-9]*\.?[0-9]+([Ee][+¯]?[0-9]+)?|¯|∞)([Jj]¯?(0[Xx][0-9A-Fa-f]+|[0-9]*\.?[0-9]+([Ee][+¯]?[0-9]+)?|¯|∞))?`, LiteralNumber, nil},
|
|
|
|
|
{`[\.\\/⌿⍀¨⍣⍨⍠⍤∘]`, NameAttribute, nil},
|
|
|
|
|
{`[+\-×÷⌈⌊∣|⍳?*⍟○!⌹<≤=>≥≠≡≢∊⍷∪∩~∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⌷⍋⍒⊤⊥⍕⍎⊣⊢⍁⍂≈⌸⍯↗]`, Operator, nil},
|
|
|
|
|
{`⍬`, NameConstant, nil},
|
|
|
|
|
{`[⎕⍞]`, NameVariableGlobal, nil},
|
|
|
|
|
{`[←→]`, KeywordDeclaration, nil},
|
|
|
|
|
{`[⍺⍵⍶⍹∇:]`, NameBuiltinPseudo, nil},
|
|
|
|
|
{`[{}]`, KeywordType, nil},
|
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|