mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			78 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
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)},
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 |