mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18: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>
		
			
				
	
	
		
			61 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
package a
 | 
						|
 | 
						|
import (
 | 
						|
	. "github.com/alecthomas/chroma" // nolint
 | 
						|
	"github.com/alecthomas/chroma/lexers/internal"
 | 
						|
)
 | 
						|
 | 
						|
// Actionscript 3 lexer.
 | 
						|
var Actionscript3 = internal.Register(MustNewLazyLexer(
 | 
						|
	&Config{
 | 
						|
		Name:      "ActionScript 3",
 | 
						|
		Aliases:   []string{"as3", "actionscript3"},
 | 
						|
		Filenames: []string{"*.as"},
 | 
						|
		MimeTypes: []string{"application/x-actionscript3", "text/x-actionscript3", "text/actionscript3"},
 | 
						|
		DotAll:    true,
 | 
						|
	},
 | 
						|
	actionscript3Rules,
 | 
						|
))
 | 
						|
 | 
						|
func actionscript3Rules() Rules {
 | 
						|
	return Rules{
 | 
						|
		"root": {
 | 
						|
			{`\s+`, Text, nil},
 | 
						|
			{`(function\s+)([$a-zA-Z_]\w*)(\s*)(\()`, ByGroups(KeywordDeclaration, NameFunction, Text, Operator), Push("funcparams")},
 | 
						|
			{`(var|const)(\s+)([$a-zA-Z_]\w*)(\s*)(:)(\s*)([$a-zA-Z_]\w*(?:\.<\w+>)?)`, ByGroups(KeywordDeclaration, Text, Name, Text, Punctuation, Text, KeywordType), nil},
 | 
						|
			{`(import|package)(\s+)((?:[$a-zA-Z_]\w*|\.)+)(\s*)`, ByGroups(Keyword, Text, NameNamespace, Text), nil},
 | 
						|
			{`(new)(\s+)([$a-zA-Z_]\w*(?:\.<\w+>)?)(\s*)(\()`, ByGroups(Keyword, Text, KeywordType, Text, Operator), nil},
 | 
						|
			{`//.*?\n`, CommentSingle, nil},
 | 
						|
			{`/\*.*?\*/`, CommentMultiline, nil},
 | 
						|
			{`/(\\\\|\\/|[^\n])*/[gisx]*`, LiteralStringRegex, nil},
 | 
						|
			{`(\.)([$a-zA-Z_]\w*)`, ByGroups(Operator, NameAttribute), nil},
 | 
						|
			{`(case|default|for|each|in|while|do|break|return|continue|if|else|throw|try|catch|with|new|typeof|arguments|instanceof|this|switch|import|include|as|is)\b`, Keyword, nil},
 | 
						|
			{`(class|public|final|internal|native|override|private|protected|static|import|extends|implements|interface|intrinsic|return|super|dynamic|function|const|get|namespace|package|set)\b`, KeywordDeclaration, nil},
 | 
						|
			{`(true|false|null|NaN|Infinity|-Infinity|undefined|void)\b`, KeywordConstant, nil},
 | 
						|
			{`(decodeURI|decodeURIComponent|encodeURI|escape|eval|isFinite|isNaN|isXMLName|clearInterval|fscommand|getTimer|getURL|getVersion|isFinite|parseFloat|parseInt|setInterval|trace|updateAfterEvent|unescape)\b`, NameFunction, nil},
 | 
						|
			{`[$a-zA-Z_]\w*`, Name, nil},
 | 
						|
			{`[0-9][0-9]*\.[0-9]+([eE][0-9]+)?[fd]?`, LiteralNumberFloat, nil},
 | 
						|
			{`0x[0-9a-f]+`, LiteralNumberHex, nil},
 | 
						|
			{`[0-9]+`, LiteralNumberInteger, nil},
 | 
						|
			{`"(\\\\|\\"|[^"])*"`, LiteralStringDouble, nil},
 | 
						|
			{`'(\\\\|\\'|[^'])*'`, LiteralStringSingle, nil},
 | 
						|
			{`[~^*!%&<>|+=:;,/?\\{}\[\]().-]+`, Operator, nil},
 | 
						|
		},
 | 
						|
		"funcparams": {
 | 
						|
			{`\s+`, Text, nil},
 | 
						|
			{`(\s*)(\.\.\.)?([$a-zA-Z_]\w*)(\s*)(:)(\s*)([$a-zA-Z_]\w*(?:\.<\w+>)?|\*)(\s*)`, ByGroups(Text, Punctuation, Name, Text, Operator, Text, KeywordType, Text), Push("defval")},
 | 
						|
			{`\)`, Operator, Push("type")},
 | 
						|
		},
 | 
						|
		"type": {
 | 
						|
			{`(\s*)(:)(\s*)([$a-zA-Z_]\w*(?:\.<\w+>)?|\*)`, ByGroups(Text, Operator, Text, KeywordType), Pop(2)},
 | 
						|
			{`\s+`, Text, Pop(2)},
 | 
						|
			Default(Pop(2)),
 | 
						|
		},
 | 
						|
		"defval": {
 | 
						|
			{`(=)(\s*)([^(),]+)(\s*)(,?)`, ByGroups(Operator, Text, UsingSelf("root"), Text, Operator), Pop(1)},
 | 
						|
			{`,`, Operator, Pop(1)},
 | 
						|
			Default(Pop(1)),
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 |