summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/alecthomas/chroma/lexers/j/j.go
blob: 9a2a4e3c044da2f9be376b7a4376e169d839378c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package j

import (
	. "github.com/alecthomas/chroma" // nolint
	"github.com/alecthomas/chroma/lexers/internal"
)

// J lexer.
var J = internal.Register(MustNewLazyLexer(
	&Config{
		Name:      "J",
		Aliases:   []string{"j"},
		Filenames: []string{"*.ijs"},
		MimeTypes: []string{"text/x-j"},
	},
	jRules,
))

func jRules() Rules {
	return Rules{
		"root": {
			{`#!.*$`, CommentPreproc, nil},
			{`NB\..*`, CommentSingle, nil},
			{`\n+\s*Note`, CommentMultiline, Push("comment")},
			{`\s*Note.*`, CommentSingle, nil},
			{`\s+`, Text, nil},
			{`'`, LiteralString, Push("singlequote")},
			{`0\s+:\s*0|noun\s+define\s*$`, NameEntity, Push("nounDefinition")},
			{`(([1-4]|13)\s+:\s*0|(adverb|conjunction|dyad|monad|verb)\s+define)\b`, NameFunction, Push("explicitDefinition")},
			{Words(``, `\b[a-zA-Z]\w*\.`, `for_`, `goto_`, `label_`), NameLabel, nil},
			{Words(``, `\.`, `assert`, `break`, `case`, `catch`, `catchd`, `catcht`, `continue`, `do`, `else`, `elseif`, `end`, `fcase`, `for`, `if`, `return`, `select`, `throw`, `try`, `while`, `whilst`), NameLabel, nil},
			{`\b[a-zA-Z]\w*`, NameVariable, nil},
			{Words(``, ``, `ARGV`, `CR`, `CRLF`, `DEL`, `Debug`, `EAV`, `EMPTY`, `FF`, `JVERSION`, `LF`, `LF2`, `Note`, `TAB`, `alpha17`, `alpha27`, `apply`, `bind`, `boxopen`, `boxxopen`, `bx`, `clear`, `cutLF`, `cutopen`, `datatype`, `def`, `dfh`, `drop`, `each`, `echo`, `empty`, `erase`, `every`, `evtloop`, `exit`, `expand`, `fetch`, `file2url`, `fixdotdot`, `fliprgb`, `getargs`, `getenv`, `hfd`, `inv`, `inverse`, `iospath`, `isatty`, `isutf8`, `items`, `leaf`, `list`, `nameclass`, `namelist`, `names`, `nc`, `nl`, `on`, `pick`, `rows`, `script`, `scriptd`, `sign`, `sminfo`, `smoutput`, `sort`, `split`, `stderr`, `stdin`, `stdout`, `table`, `take`, `timespacex`, `timex`, `tmoutput`, `toCRLF`, `toHOST`, `toJ`, `tolower`, `toupper`, `type`, `ucp`, `ucpcount`, `usleep`, `utf8`, `uucp`), NameFunction, nil},
			{`=[.:]`, Operator, nil},
			{"[-=+*#$%@!~`^&\";:.,<>{}\\[\\]\\\\|/]", Operator, nil},
			{`[abCdDeEfHiIjLMoprtT]\.`, KeywordReserved, nil},
			{`[aDiLpqsStux]\:`, KeywordReserved, nil},
			{`(_[0-9])\:`, KeywordConstant, nil},
			{`\(`, Punctuation, Push("parentheses")},
			Include("numbers"),
		},
		"comment": {
			{`[^)]`, CommentMultiline, nil},
			{`^\)`, CommentMultiline, Pop(1)},
			{`[)]`, CommentMultiline, nil},
		},
		"explicitDefinition": {
			{`\b[nmuvxy]\b`, NameDecorator, nil},
			Include("root"),
			{`[^)]`, Name, nil},
			{`^\)`, NameLabel, Pop(1)},
			{`[)]`, Name, nil},
		},
		"numbers": {
			{`\b_{1,2}\b`, LiteralNumber, nil},
			{`_?\d+(\.\d+)?(\s*[ejr]\s*)_?\d+(\.?=\d+)?`, LiteralNumber, nil},
			{`_?\d+\.(?=\d+)`, LiteralNumberFloat, nil},
			{`_?\d+x`, LiteralNumberIntegerLong, nil},
			{`_?\d+`, LiteralNumberInteger, nil},
		},
		"nounDefinition": {
			{`[^)]`, LiteralString, nil},
			{`^\)`, NameLabel, Pop(1)},
			{`[)]`, LiteralString, nil},
		},
		"parentheses": {
			{`\)`, Punctuation, Pop(1)},
			Include("explicitDefinition"),
			Include("root"),
		},
		"singlequote": {
			{`[^']`, LiteralString, nil},
			{`''`, LiteralString, nil},
			{`'`, LiteralString, Pop(1)},
		},
	}
}