mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-25 20:11:36 +01:00
d6df0a53b5
Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/390 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
41 lines
1.3 KiB
Go
41 lines
1.3 KiB
Go
package a
|
||
|
||
import (
|
||
. "github.com/alecthomas/chroma" // nolint
|
||
"github.com/alecthomas/chroma/lexers/internal"
|
||
)
|
||
|
||
// Apl lexer.
|
||
var Apl = internal.Register(MustNewLazyLexer(
|
||
&Config{
|
||
Name: "APL",
|
||
Aliases: []string{"apl"},
|
||
Filenames: []string{"*.apl"},
|
||
MimeTypes: []string{},
|
||
},
|
||
aplRules,
|
||
))
|
||
|
||
func aplRules() Rules {
|
||
return Rules{
|
||
"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},
|
||
},
|
||
}
|
||
}
|