textpow 0.10.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +7 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +30 -0
- data/{History.txt → History.rdoc} +10 -0
- data/{README.txt → MIT-LICENSE.txt} +0 -30
- data/README.rdoc +82 -0
- data/Rakefile +42 -49
- data/bin/plist2syntax +0 -0
- data/bin/plist2yaml +0 -0
- data/examples/benchmark_js.rb +13 -0
- data/examples/jquery.js +9046 -0
- data/lib/textpow.rb +43 -3
- data/lib/textpow/debug_processor.rb +35 -35
- data/lib/textpow/recording_processor.rb +13 -0
- data/lib/textpow/score_manager.rb +60 -60
- data/lib/textpow/syntax.rb +303 -262
- data/lib/textpow/syntax/broken/markdown.syntax +519 -0
- data/lib/textpow/syntax/broken/php.syntax +1253 -0
- data/lib/textpow/syntax/buggy/nemerle.syntax +74 -0
- data/lib/textpow/syntax/old/YAML.yaml +160 -0
- data/lib/textpow/syntax/old/txt2tags.yaml +139 -0
- data/lib/textpow/syntax/source.actionscript.syntax +97 -0
- data/lib/textpow/syntax/source.active4d.library.syntax +21 -0
- data/lib/textpow/syntax/source.active4d.syntax +276 -0
- data/lib/textpow/syntax/source.ada.syntax +33 -0
- data/lib/textpow/syntax/source.antlr.syntax +151 -0
- data/lib/textpow/syntax/source.apache-config.mod_perl.syntax +50 -0
- data/lib/textpow/syntax/source.apache-config.syntax +191 -0
- data/lib/textpow/syntax/source.applescript.syntax +384 -0
- data/lib/textpow/syntax/source.asp.syntax +70 -0
- data/lib/textpow/syntax/source.asp.vb.net.syntax +129 -0
- data/lib/textpow/syntax/source.c++.qt.syntax +26 -0
- data/lib/textpow/syntax/source.c++.syntax +186 -0
- data/lib/textpow/syntax/source.c-sharp.syntax +59 -0
- data/lib/textpow/syntax/source.c.ragel.syntax +201 -0
- data/lib/textpow/syntax/source.c.syntax +414 -0
- data/lib/textpow/syntax/source.camlp4.ocaml.syntax +36 -0
- data/lib/textpow/syntax/source.cm.syntax +32 -0
- data/lib/textpow/syntax/source.coffee.syntax +216 -0
- data/lib/textpow/syntax/source.context-free.syntax +176 -0
- data/lib/textpow/syntax/source.css.beta.syntax +1925 -0
- data/lib/textpow/syntax/source.css.syntax +195 -0
- data/lib/textpow/syntax/source.d.syntax +142 -0
- data/lib/textpow/syntax/source.diff.syntax +81 -0
- data/lib/textpow/syntax/source.dot.syntax +47 -0
- data/lib/textpow/syntax/source.dylan.syntax +62 -0
- data/lib/textpow/syntax/source.eiffel.syntax +78 -0
- data/lib/textpow/syntax/source.erlang.syntax +922 -0
- data/lib/textpow/syntax/source.fortran.syntax +141 -0
- data/lib/textpow/syntax/source.fscript.syntax +80 -0
- data/lib/textpow/syntax/source.fxscript.syntax +142 -0
- data/lib/textpow/syntax/source.gri.syntax +83 -0
- data/lib/textpow/syntax/source.groovy.groovy.syntax +191 -0
- data/lib/textpow/syntax/source.haskell.syntax +88 -0
- data/lib/textpow/syntax/source.icalendar.syntax +32 -0
- data/lib/textpow/syntax/source.inform.syntax +48 -0
- data/lib/textpow/syntax/source.ini.syntax +55 -0
- data/lib/textpow/syntax/source.io.syntax +81 -0
- data/lib/textpow/syntax/source.java-props.syntax +20 -0
- data/lib/textpow/syntax/source.java.syntax +211 -0
- data/lib/textpow/syntax/source.js.greasemonkey.syntax +34 -0
- data/lib/textpow/syntax/source.js.jquery.syntax +114 -0
- data/lib/textpow/syntax/source.js.mootools.syntax +572 -0
- data/lib/textpow/syntax/source.js.prototype.bracketed.syntax +140 -0
- data/lib/textpow/syntax/source.js.prototype.syntax +72 -0
- data/lib/textpow/syntax/source.js.syntax +256 -0
- data/lib/textpow/syntax/source.js.yui.syntax +176 -0
- data/lib/textpow/syntax/source.json.syntax +136 -0
- data/lib/textpow/syntax/source.lex.syntax +219 -0
- data/lib/textpow/syntax/source.lighttpd-config.syntax +54 -0
- data/lib/textpow/syntax/source.lilypond.syntax +492 -0
- data/lib/textpow/syntax/source.lisp.syntax +61 -0
- data/lib/textpow/syntax/source.logo.syntax +29 -0
- data/lib/textpow/syntax/source.logtalk.syntax +152 -0
- data/lib/textpow/syntax/source.lua.syntax +86 -0
- data/lib/textpow/syntax/source.makefile.syntax +36 -0
- data/lib/textpow/syntax/source.matlab.syntax +142 -0
- data/lib/textpow/syntax/source.mel.syntax +92 -0
- data/lib/textpow/syntax/source.mips.syntax +66 -0
- data/lib/textpow/syntax/source.ml.syntax +121 -0
- data/lib/textpow/syntax/source.modula-3.syntax +47 -0
- data/lib/textpow/syntax/source.nant-build.syntax +53 -0
- data/lib/textpow/syntax/source.objc++.syntax +18 -0
- data/lib/textpow/syntax/source.objc.syntax +233 -0
- data/lib/textpow/syntax/source.ocaml.syntax +764 -0
- data/lib/textpow/syntax/source.ocamllex.syntax +167 -0
- data/lib/textpow/syntax/source.ocamlyacc.syntax +184 -0
- data/lib/textpow/syntax/source.open-gl.syntax +14 -0
- data/lib/textpow/syntax/source.pascal.syntax +77 -0
- data/lib/textpow/syntax/source.pascal.vectorscript.syntax +57 -0
- data/lib/textpow/syntax/source.perl.syntax +1113 -0
- data/lib/textpow/syntax/source.php.cake.syntax +55 -0
- data/lib/textpow/syntax/source.plist.tm-grammar.syntax +708 -0
- data/lib/textpow/syntax/source.postscript.syntax +114 -0
- data/lib/textpow/syntax/source.processing.syntax +106 -0
- data/lib/textpow/syntax/source.prolog.syntax +40 -0
- data/lib/textpow/syntax/source.python.django.syntax +21 -0
- data/lib/textpow/syntax/source.python.syntax +868 -0
- data/lib/textpow/syntax/source.qmake.syntax +114 -0
- data/lib/textpow/syntax/source.quake-config.syntax +32 -0
- data/lib/textpow/syntax/source.r-console.syntax +16 -0
- data/lib/textpow/syntax/source.r.syntax +81 -0
- data/lib/textpow/syntax/source.regexp.oniguruma.syntax +107 -0
- data/lib/textpow/syntax/source.regexp.python.syntax +109 -0
- data/lib/textpow/syntax/source.regexp.syntax +50 -0
- data/lib/textpow/syntax/source.remind.syntax +253 -0
- data/lib/textpow/syntax/source.rez.syntax +80 -0
- data/lib/textpow/syntax/source.ruby.experimental.syntax +145 -0
- data/lib/textpow/syntax/source.ruby.rails.syntax +88 -0
- data/lib/textpow/syntax/source.ruby.syntax +1035 -0
- data/lib/textpow/syntax/source.s5.syntax +69 -0
- data/lib/textpow/syntax/source.sass.syntax +45 -0
- data/lib/textpow/syntax/source.scheme.syntax +347 -0
- data/lib/textpow/syntax/source.scilab.syntax +41 -0
- data/lib/textpow/syntax/source.scss.syntax +527 -0
- data/lib/textpow/syntax/source.shell.syntax +384 -0
- data/lib/textpow/syntax/source.slate.syntax +149 -0
- data/lib/textpow/syntax/source.smarty.syntax +63 -0
- data/lib/textpow/syntax/source.sql.ruby.syntax +18 -0
- data/lib/textpow/syntax/source.sql.syntax +237 -0
- data/lib/textpow/syntax/source.ssh-config.syntax +33 -0
- data/lib/textpow/syntax/source.strings.syntax +39 -0
- data/lib/textpow/syntax/source.swig.syntax +57 -0
- data/lib/textpow/syntax/source.tcl.macports.syntax +163 -0
- data/lib/textpow/syntax/source.tcl.syntax +152 -0
- data/lib/textpow/syntax/source.yaml.syntax +160 -0
- data/lib/textpow/syntax/text.active4d-ini.syntax +50 -0
- data/lib/textpow/syntax/text.bbcode.syntax +287 -0
- data/lib/textpow/syntax/text.bibtex.syntax +151 -0
- data/lib/textpow/syntax/text.blog.html.syntax +41 -0
- data/lib/textpow/syntax/text.blog.markdown.syntax +42 -0
- data/lib/textpow/syntax/text.blog.syntax +27 -0
- data/lib/textpow/syntax/text.blog.textile.syntax +27 -0
- data/lib/textpow/syntax/text.gtdalt.syntax +143 -0
- data/lib/textpow/syntax/text.haml.syntax +88 -0
- data/lib/textpow/syntax/text.html.asp.net.syntax +424 -0
- data/lib/textpow/syntax/text.html.asp.syntax +27 -0
- data/lib/textpow/syntax/text.html.basic.syntax +362 -0
- data/lib/textpow/syntax/text.html.cfm.syntax +119 -0
- data/lib/textpow/syntax/text.html.django.syntax +36 -0
- data/lib/textpow/syntax/text.html.dokuwiki.syntax +204 -0
- data/lib/textpow/syntax/text.html.doxygen.syntax +43 -0
- data/lib/textpow/syntax/text.html.markdown.multimarkdown.syntax +39 -0
- data/lib/textpow/syntax/text.html.mason.syntax +119 -0
- data/lib/textpow/syntax/text.html.mediawiki.syntax +567 -0
- data/lib/textpow/syntax/text.html.mt.syntax +162 -0
- data/lib/textpow/syntax/text.html.ruby.syntax +40 -0
- data/lib/textpow/syntax/text.html.strict.active4d.syntax +311 -0
- data/lib/textpow/syntax/text.html.tcl.syntax +26 -0
- data/lib/textpow/syntax/text.html.textile.syntax +215 -0
- data/lib/textpow/syntax/text.html.tt.syntax +121 -0
- data/lib/textpow/syntax/text.html.twiki.syntax +241 -0
- data/lib/textpow/syntax/text.html.xhtml.1-strict.syntax +4027 -0
- data/lib/textpow/syntax/text.log.latex.syntax +50 -0
- data/lib/textpow/syntax/text.mail.markdown.syntax +118 -0
- data/lib/textpow/syntax/text.man.syntax +17 -0
- data/lib/textpow/syntax/text.moinmoin.syntax +189 -0
- data/lib/textpow/syntax/text.plain.gtd.syntax +22 -0
- data/lib/textpow/syntax/text.plain.release-notes.syntax +46 -0
- data/lib/textpow/syntax/text.plain.syntax +32 -0
- data/lib/textpow/syntax/text.plist.syntax +635 -0
- data/lib/textpow/syntax/text.pmwiki.syntax +113 -0
- data/lib/textpow/syntax/text.restructuredtext.syntax +250 -0
- data/lib/textpow/syntax/text.setext.syntax +147 -0
- data/lib/textpow/syntax/text.subversion-commit.syntax +36 -0
- data/lib/textpow/syntax/text.tabular.csv.syntax +68 -0
- data/lib/textpow/syntax/text.tabular.tsv.syntax +50 -0
- data/lib/textpow/syntax/text.tex.latex.beamer.syntax +41 -0
- data/lib/textpow/syntax/text.tex.latex.haskell.syntax +24 -0
- data/lib/textpow/syntax/text.tex.latex.memoir.syntax +64 -0
- data/lib/textpow/syntax/text.tex.latex.rd.syntax +91 -0
- data/lib/textpow/syntax/text.tex.latex.sweave.syntax +84 -0
- data/lib/textpow/syntax/text.tex.latex.syntax +566 -0
- data/lib/textpow/syntax/text.tex.math.syntax +49 -0
- data/lib/textpow/syntax/text.tex.syntax +86 -0
- data/lib/textpow/syntax/text.txt2tags.syntax +79 -0
- data/lib/textpow/syntax/text.xml.apple-dist.syntax +77 -0
- data/lib/textpow/syntax/text.xml.strict.syntax +92 -0
- data/lib/textpow/syntax/text.xml.syntax +180 -0
- data/lib/textpow/syntax/text.xml.xsl.syntax +60 -0
- data/lib/textpow/version.rb +3 -0
- data/spec/fixtures/objeck.plist +107 -0
- data/spec/fixtures/utf8.txt +1 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/textpow/score_manager_spec.rb +20 -0
- data/spec/textpow/syntax_files_spec.rb +26 -0
- data/spec/textpow/syntax_spec.rb +225 -0
- data/spec/textpow_spec.rb +57 -0
- data/textpow.gemspec +19 -0
- metadata +246 -68
- data/Manifest.txt +0 -13
- data/mm/manual.mm +0 -266
- data/test/test_textpow.rb +0 -25
@@ -0,0 +1,141 @@
|
|
1
|
+
---
|
2
|
+
name: Fortran
|
3
|
+
fileTypes:
|
4
|
+
- f
|
5
|
+
- F
|
6
|
+
- f77
|
7
|
+
- F77
|
8
|
+
- f90
|
9
|
+
- F90
|
10
|
+
- f95
|
11
|
+
- F95
|
12
|
+
- for
|
13
|
+
- FOR
|
14
|
+
- fpp
|
15
|
+
- FPP
|
16
|
+
- dmod1
|
17
|
+
- dt
|
18
|
+
firstLineMatch: "(?i)-[*]- mode: f90 -[*]-"
|
19
|
+
scopeName: source.fortran
|
20
|
+
uuid: 45253F88-F7CC-49C5-9C32-F3FADD2AB579
|
21
|
+
foldingStartMarker: ^\s*(?i:(if|for|do|module(?!\s*procedure)|interface|type(?!\s*\()|subroutine|function))\s.*$
|
22
|
+
patterns:
|
23
|
+
- name: meta.function.fortran
|
24
|
+
endCaptures:
|
25
|
+
"0":
|
26
|
+
name: punctuation.definition.parameters.fortran
|
27
|
+
begin: "(?x)\n (?: (?i:subroutine\\s+) | (?i:function\\s+) )\n \t([A-Za-z_][A-Za-z0-9_:]+)\n \t \\s*((\\()(?=[^)\\n]*))?\n "
|
28
|
+
beginCaptures:
|
29
|
+
"1":
|
30
|
+
name: entity.name.function.fortran
|
31
|
+
"2":
|
32
|
+
name: punctuation.definition.parameters.fortran
|
33
|
+
end: \)
|
34
|
+
patterns:
|
35
|
+
- include: $base
|
36
|
+
- name: keyword.control.fortran
|
37
|
+
match: \b(?i:(use|if|for|do|go\sto|then|else|function|end|enddo|endif|contains|assign|backspace|call|close|continue|endfile|inquire|open|print|read|return|rewind|stop|write))\b
|
38
|
+
- name: comment.line.c.fortran.punchcard-style
|
39
|
+
begin: ^[Cc]
|
40
|
+
beginCaptures:
|
41
|
+
"0":
|
42
|
+
name: punctuation.definition.comment.fortran
|
43
|
+
end: $\n?
|
44
|
+
patterns:
|
45
|
+
- match: \\\s*\n
|
46
|
+
- name: comment.line.asterisk.fortran.modern
|
47
|
+
begin: ^[*]
|
48
|
+
beginCaptures:
|
49
|
+
"0":
|
50
|
+
name: punctuation.definition.comment.fortran
|
51
|
+
end: $\n?
|
52
|
+
patterns:
|
53
|
+
- match: \\\s*\n
|
54
|
+
- name: comment.line.exclamation.fortran.modern
|
55
|
+
begin: "[!]"
|
56
|
+
beginCaptures:
|
57
|
+
"0":
|
58
|
+
name: punctuation.definition.comment.fortran
|
59
|
+
end: $\n?
|
60
|
+
patterns:
|
61
|
+
- match: \\\s*\n
|
62
|
+
- name: string.quoted.single.fortran
|
63
|
+
endCaptures:
|
64
|
+
"0":
|
65
|
+
name: punctuation.definition.string.end.fortran
|
66
|
+
begin: "'"
|
67
|
+
beginCaptures:
|
68
|
+
"0":
|
69
|
+
name: punctuation.definition.string.begin.fortran
|
70
|
+
end: "'"
|
71
|
+
patterns:
|
72
|
+
- name: constant.character.escape.fortran
|
73
|
+
match: \\.
|
74
|
+
- name: string.quoted.double.fortran
|
75
|
+
endCaptures:
|
76
|
+
"0":
|
77
|
+
name: punctuation.definition.string.end.fortran
|
78
|
+
begin: "\""
|
79
|
+
beginCaptures:
|
80
|
+
"0":
|
81
|
+
name: punctuation.definition.string.begin.fortran
|
82
|
+
end: "\""
|
83
|
+
patterns:
|
84
|
+
- name: constant.character.escape.fortran
|
85
|
+
match: \\.
|
86
|
+
- name: storage.type.fortran
|
87
|
+
match: \b(?i:data|double|block\sdata|double\sprecision|type(?=\s*\()|entry|equivalence|integer|real|character|intrinsic|logical|parameter)\b
|
88
|
+
- name: storage.modifier.fortran
|
89
|
+
match: \b(?i:(private|public|external|format|implicit|common|intent|in|out|inout))\b
|
90
|
+
- name: keyword.other.fortran.90
|
91
|
+
match: \b(?i:(recursive|optional|interface|procedure|module|pointer|target))\b
|
92
|
+
- name: keyword.other.fortran
|
93
|
+
match: \b(?i:(program|save|subroutine|function|module|none))\b
|
94
|
+
- name: constant.language.fortran
|
95
|
+
match: \b(?i:(r8|r4|TRUE|FALSE))\b
|
96
|
+
- name: keyword.operator.fortran
|
97
|
+
match: (?i:(\.and\.|\.or\.|\.eq\.|\.lt\.|\.le\.|\.gt\.|\.ge\.|\.ne\.|\.not\.|\.eqv\.|\.neqv\.))
|
98
|
+
- name: keyword.operator.fortran.90
|
99
|
+
match: (\=\=|\/\=|\>\=|\>|\<|\<\=|\%|\=\>|\=|\:\:)
|
100
|
+
- name: constant.numeric.fortran
|
101
|
+
match: \b((0(x|X)[0-9a-fA-F]*)|([0-9\.]*_[ri][0-9]+)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\b
|
102
|
+
- name: meta.tag.preprocessor.macro.fortran
|
103
|
+
begin: "(?x)\n \t\t^\\s*\\#\\s*(define)\\s+ # define\n \t\t((?<id>[a-zA-Z_][a-zA-Z0-9_]*)) # macro name\n \t\t\\((\n \t\t\t\\s* \\g<id> \\s* # first argument\n \t\t\t(, \\s* \\g<id> \\s*)* # additional arguments\n \t\t)\\)\n \t"
|
104
|
+
end: (?=(?://|/\*))|$
|
105
|
+
- name: meta.preprocessor.include.fortran
|
106
|
+
begin: ^\s*(#)\s*(include|import)\b\s+
|
107
|
+
beginCaptures:
|
108
|
+
"1":
|
109
|
+
name: punctuation.definition.preprocessor.fortran
|
110
|
+
"2":
|
111
|
+
name: keyword.control.import.fortran
|
112
|
+
end: (?=(?://|/\*))|$
|
113
|
+
patterns:
|
114
|
+
- match: \\\s*\n
|
115
|
+
- name: string.quoted.double.include.fortran
|
116
|
+
endCaptures:
|
117
|
+
"0":
|
118
|
+
name: punctuation.definition.string.end.fortran
|
119
|
+
begin: "\""
|
120
|
+
beginCaptures:
|
121
|
+
"0":
|
122
|
+
name: punctuation.definition.string.begin.fortran
|
123
|
+
end: "\""
|
124
|
+
- name: string.quoted.other.lt-gt.include.fortran
|
125
|
+
endCaptures:
|
126
|
+
"0":
|
127
|
+
name: punctuation.definition.string.end.fortran
|
128
|
+
begin: <
|
129
|
+
beginCaptures:
|
130
|
+
"0":
|
131
|
+
name: punctuation.definition.string.begin.fortran
|
132
|
+
end: ">"
|
133
|
+
- name: meta.preprocessor.fortran
|
134
|
+
begin: ^\s*#\s*(define|defined|elif|else|if|ifdef|ifndef|line|pragma|undef|endif)\b
|
135
|
+
end: (?=(?://|/\*))|$
|
136
|
+
patterns:
|
137
|
+
- match: \\\s*\n
|
138
|
+
- name: keyword.other.non-executable.fortran
|
139
|
+
match: \b(?i:(dimension|function))\b
|
140
|
+
foldingStopMarker: ^\s*(?i:(end)).*$
|
141
|
+
keyEquivalent: ^~F
|
@@ -0,0 +1,80 @@
|
|
1
|
+
---
|
2
|
+
name: F-Script
|
3
|
+
fileTypes:
|
4
|
+
- fscript
|
5
|
+
scopeName: source.fscript
|
6
|
+
uuid: C2CB9A74-C9FC-4F63-8BAF-E64B72A60DD4
|
7
|
+
foldingStartMarker: \[
|
8
|
+
patterns:
|
9
|
+
- name: meta.dummy.symbol.ignore.fscript
|
10
|
+
match: "(:|\\w):"
|
11
|
+
- name: constant.other.symbol.fscript
|
12
|
+
captures:
|
13
|
+
"1":
|
14
|
+
name: punctuation.definition.symbol.fscript
|
15
|
+
match: (:)\w+\b
|
16
|
+
- name: constant.numeric.fscript
|
17
|
+
match: \b((([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)\b
|
18
|
+
- name: constant.other.block.compact.fscript
|
19
|
+
match: "#([[:lower:]]|_|[+=\\-/!%&*|><~?])(\\w|[+=\\-/!%&*|><~?:])*"
|
20
|
+
- name: meta.block.empty.fscript
|
21
|
+
captures:
|
22
|
+
"1":
|
23
|
+
name: punctuation.section.block.fscript
|
24
|
+
"2":
|
25
|
+
name: variable.parameter.block.fscript
|
26
|
+
"3":
|
27
|
+
name: punctuation.section.block.fscript
|
28
|
+
match: (\[)(?:\s*((?::\w+\s+)*:\w+)\s*\|)?\s*(\])
|
29
|
+
- name: meta.block.fscript
|
30
|
+
endCaptures:
|
31
|
+
"0":
|
32
|
+
name: punctuation.section.block.fscript
|
33
|
+
begin: (\[)(?:\s*((?::\w+\s+)*:\w+)\s*\|)?
|
34
|
+
beginCaptures:
|
35
|
+
"1":
|
36
|
+
name: punctuation.section.block.fscript
|
37
|
+
"2":
|
38
|
+
name: variable.parameter.block.fscript
|
39
|
+
end: \]
|
40
|
+
patterns:
|
41
|
+
- name: meta.block.header.fscript
|
42
|
+
match: \s+
|
43
|
+
- name: meta.block.content.fscript
|
44
|
+
captures:
|
45
|
+
"1":
|
46
|
+
name: variable.other.local.fscript
|
47
|
+
begin: (?:\|(\s*(?:\w+\s+)*\w+\s*)?\||(?=[^\s|]))
|
48
|
+
end: (?=\])
|
49
|
+
patterns:
|
50
|
+
- include: $base
|
51
|
+
- name: constant.language.fscript
|
52
|
+
match: \b(true|YES|false|NO|sys|nil)\b
|
53
|
+
- captures:
|
54
|
+
"1":
|
55
|
+
name: entity.name.function.fscript
|
56
|
+
match: ^(\w+)\s*:=\s*(?=\[)
|
57
|
+
comment: a hack for the symbol popup
|
58
|
+
- name: comment.block.quotes.fscript
|
59
|
+
endCaptures:
|
60
|
+
"0":
|
61
|
+
name: punctuation.definition.comment.end.fscript
|
62
|
+
begin: "\""
|
63
|
+
beginCaptures:
|
64
|
+
"0":
|
65
|
+
name: punctuation.definition.comment.begin.fscript
|
66
|
+
end: "\""
|
67
|
+
- name: string.quoted.single.fscript
|
68
|
+
endCaptures:
|
69
|
+
"0":
|
70
|
+
name: punctuation.definition.string.end.fscript
|
71
|
+
begin: "'"
|
72
|
+
beginCaptures:
|
73
|
+
"0":
|
74
|
+
name: punctuation.definition.string.begin.fscript
|
75
|
+
end: "'"
|
76
|
+
patterns:
|
77
|
+
- name: constant.character.escape.fscript
|
78
|
+
match: \\.
|
79
|
+
foldingStopMarker: \]
|
80
|
+
keyEquivalent: ^~F
|
@@ -0,0 +1,142 @@
|
|
1
|
+
---
|
2
|
+
name: FXScript
|
3
|
+
fileTypes:
|
4
|
+
- fxscript
|
5
|
+
scopeName: source.fxscript
|
6
|
+
uuid: 43751327-3FD1-4BE7-AD05-136FC552BABA
|
7
|
+
foldingStartMarker: (^|(?<=;)[ \t]*)on[ \t]+(\w+)[ \t]*
|
8
|
+
patterns:
|
9
|
+
- name: meta.function.fxscript
|
10
|
+
captures:
|
11
|
+
"2":
|
12
|
+
name: entity.name.function.fxscript
|
13
|
+
begin: (^|(?<=;)[ \t]*)on[ \t]+(\w+)[ \t]*(?=\([^\)]*\))
|
14
|
+
end: end(;|;?[ \t]*\n|;?[ \t]*//.*[ \t]*\n)
|
15
|
+
patterns:
|
16
|
+
- begin: \((?=(?i:clip|color|float|image|point|string|value|point3d))
|
17
|
+
end: \)
|
18
|
+
patterns:
|
19
|
+
- captures:
|
20
|
+
"1":
|
21
|
+
name: support.type.fxscript
|
22
|
+
"2":
|
23
|
+
name: variable.parameter.function.fxscript
|
24
|
+
match: ((?i:clip|color|float|image|point|string|value|point3d))[ \t]+([^,)]+)
|
25
|
+
- include: $self
|
26
|
+
- name: keyword.other.input-control.fxscript
|
27
|
+
begin: (^|(?<=;)[ \t]*)input[ \t]*
|
28
|
+
end: \n
|
29
|
+
patterns:
|
30
|
+
- include: $self
|
31
|
+
- captures:
|
32
|
+
"1":
|
33
|
+
name: variable.other.global.fxscript
|
34
|
+
"2":
|
35
|
+
name: string.quoted.double.fxscript
|
36
|
+
"3":
|
37
|
+
name: support.type.fxscript
|
38
|
+
match: \b(\w+),[ \t]+("[^"]+"),[ \t]+(?i:Angle|CheckBox|Clip|Color|FontList|Label|Point|Popup|RadioGroup|Slider|Text),?
|
39
|
+
comment: Input Controls
|
40
|
+
- name: storage.type.fxscript
|
41
|
+
match: (?i:float|image|point|point3d|region|string|value|YUVcolor)\b
|
42
|
+
comment: Data Types
|
43
|
+
- name: keyword.control.fxscrpt
|
44
|
+
match: \b(?i:if|(end|else)( if)?|for|next|return|repeat( While| With (Counter|List)))\b
|
45
|
+
- name: keyword.other.definition-statements.fxscript
|
46
|
+
match: /b(?i:AlphaType|EffectID|FullFrame|Group|InformationFlag|InvalEntireItem|KeyType|ProducesAlpha|QTEffect|RenderEachFrameWhenStill|WipeCode)/b
|
47
|
+
- name: keyword.operator.arithmetic.fxscrpt
|
48
|
+
match: "!|\\$|%|&|\\*|\\-\\-|\\-|\\+\\+|\\+|~|==|=|!=|!==|<=|>=|<|>|!|&&|\\|\\||\\?\\:|\\*=|/=|%=|\\+=|\\-=|&=|\\^="
|
49
|
+
- name: comment.line.double-slash.fxscript
|
50
|
+
captures:
|
51
|
+
"1":
|
52
|
+
name: punctuation.definition.comment.fxscript
|
53
|
+
match: (//).*$\n?
|
54
|
+
- name: support.constant.colorspace.fxscript
|
55
|
+
match: (?i:kFormatRGB219|kFormatRGB255|kFormatYUV219)
|
56
|
+
- name: constant.numeric.fxscript
|
57
|
+
match: \b[0-9]+(\.[0-9]*)?\b
|
58
|
+
- name: constant.numeric.hex.fxscript
|
59
|
+
match: \b0x([a-fA-F0-9]*)?\b
|
60
|
+
- name: support.constant.color.fxscript
|
61
|
+
match: (?i:kBlack|kBlue|kCyan|kGray|kGreen|kMagenta|kRed|kWhite|kYellow)
|
62
|
+
- name: support.constant.formatting.fxscript
|
63
|
+
match: (?i:k16mm|k24fps|k25fps|k30df|k30fps|k35mm|k60df|k60fps|kFloat2|kFloat4|kFloat6|kInteger|kSize)
|
64
|
+
- name: support.constant.general.fxscript
|
65
|
+
match: (?i:false|kAlpha|kNone|kUndefined|true)\b
|
66
|
+
- name: support.constant.key.fxscript
|
67
|
+
match: (?i:kKeyAdd|kKeyDarken|kKeyDifference|kKeyHardLight|kKeyLighten|kKeyMultiply|kKeyNormal|kKeyOverlay|kKeyScreen|kKeySoftLight|kKeySubtract)
|
68
|
+
- name: support.constant.formatting.fxscript
|
69
|
+
match: (?i:k16mm|k24fps|k25fps|k30df|k30fps|k35mm|k60df|k60fps|kFloat2|kFloat4|kFloat6|kInteger|kSize)
|
70
|
+
- name: support.variable.predeclared.fxscript
|
71
|
+
match: \b(?i:clip1|clip2|dest|duration|exposedBackground|fieldNumber|fieldprocessing|fps|frame|linearRamp|previewing|ratio|renderRes|RGBtoYUV|src1|src2|srcIsGap1|srcIsGap2|srcType1|srcType2|topfield|YUVtoRGB)\b
|
72
|
+
- name: support.constant.text.fxscript
|
73
|
+
match: (?i:kbold|kbolditalic|kcenterjustify|kitalic|kleftjustify|kplain|krightjustify)
|
74
|
+
- name: support.constant.shapes.fxscript
|
75
|
+
match: (?i:kDiamond|kRound|kSquare)
|
76
|
+
- captures:
|
77
|
+
"6":
|
78
|
+
name: entity.name.function.color.chroma-u.fxscript
|
79
|
+
"7":
|
80
|
+
name: entity.name.function.color.chroma-v.fxscript
|
81
|
+
"1":
|
82
|
+
name: entity.name.function.color.alpha.fxscript
|
83
|
+
"2":
|
84
|
+
name: entity.name.function.color.red.fxscript
|
85
|
+
"3":
|
86
|
+
name: entity.name.function.color.green.fxscript
|
87
|
+
"4":
|
88
|
+
name: entity.name.function.color.blue.fxscript
|
89
|
+
"5":
|
90
|
+
name: entity.name.function.color.luma.fxscript
|
91
|
+
match: \b\w+\.(?i:(a)|(r)|(g)|(b)|(y)|(u)|(v))\b
|
92
|
+
- name: string.quoted.double.fxscript
|
93
|
+
endCaptures:
|
94
|
+
"0":
|
95
|
+
name: punctuation.definition.string.end.fxscript
|
96
|
+
begin: "\""
|
97
|
+
beginCaptures:
|
98
|
+
"0":
|
99
|
+
name: punctuation.definition.string.begin.fxscript
|
100
|
+
end: "\""
|
101
|
+
patterns:
|
102
|
+
- name: constant.character.escape.fxscript
|
103
|
+
match: \\.
|
104
|
+
- name: support.function.composite.fxscript
|
105
|
+
match: \b(?i:Add|AddOffset|Darken|Difference|ImageAnd|ImageOr|ImageXor|Invert|InvertChannel|Lighten|Matte|Multiply|Overlay|Screen|Subtract|UnMultiply)\b
|
106
|
+
- name: support.function.blit.fxscript
|
107
|
+
match: \b(?i:Blit|BlitRect|MaskCopy|MeshBlit|MeshBlit3D|PagePeel|RegionCopy)\b
|
108
|
+
- name: support.function.clip.fxscript
|
109
|
+
match: \b(?i:GetLimits|GetReelName|GetTimeCode|GetVideo)
|
110
|
+
- name: support.function.distort.fxscript
|
111
|
+
match: \b(?i:BumpMap|Cylinder|Displace|Fisheye|OffsetPixels|PondRipple|Ripple|Wave|Whirlpool)\b
|
112
|
+
- name: support.function.external.fxscript
|
113
|
+
match: \b(?i:Filter|Generator|Transition)\b
|
114
|
+
- name: support.function.geometry.fxscript
|
115
|
+
match: \b(?i:AngleTo|AspectOf|BoundsOf|CenterOf|Convert2dto3d|convert3dto2d|DimensionsOf|DistTo|Grid|Interpolate|Mesh)\b
|
116
|
+
- name: support.function.key.fxscript
|
117
|
+
match: \b(?i:BGDiff|BlueScreen|GreenScreen|RGBColorKey|YUVColorKey)\b
|
118
|
+
- name: support.function.math.fxscript
|
119
|
+
match: \b(?i:Abs|Integer|Sign|Sqrt|Power)\b
|
120
|
+
- name: support.function.parser.fxscript
|
121
|
+
match: \b(?i:BezToLevelMap|ChromaAngleKey)
|
122
|
+
- name: support.function.process.fxscript
|
123
|
+
match: \b(?i:Blend|Blur|BlurChannel|Channel(Copy|Fill|Multiply)|ColorTransform|Convolve|Desaturate|Diffuse|DiffuseOffset|LevelMap|MotionBlur|RadialBlur)\b
|
124
|
+
- name: support.function.shapes.process.fxscript
|
125
|
+
match: \b(?i:CurveTo|DrawSoftDot|FillArc|FillOval|FillPoly|FillRegion|FrameArc|FrameOval|FramePoly|FrameRegion|Line|MakeRect|MakeRegion|OvalRegion|RegionIsEmpty)\b
|
126
|
+
- name: support.function.string.fxscript
|
127
|
+
match: \b(?i:ASCIIOf|ASCIIToSTring|CharsOf|CountTextLines|FindString|getTextLine|GetTimecodeStringFromClip|Length|NumToString|StringToNum)
|
128
|
+
- name: support.function.text.fxscript
|
129
|
+
match: \b(?i:DrawString|DrawStringPlain|MeasureString|MeasureStringPlain|ResetText|SetTextFont|SetTextJustify|SetTextSize|SetTextStyle)
|
130
|
+
- name: support.function.transform.fxscript
|
131
|
+
match: \b(?i:Offset|Offset3d|Outset3d|Rotate|Rotate3d|Scale|Scale3d)\b
|
132
|
+
- name: support.function.undocumented.fxscript
|
133
|
+
match: \b(?i:getNativeAspect|getNativeSize|FilteredBlitRect|BlurChannel_alt)\b
|
134
|
+
- name: support.function.debug.fxscript
|
135
|
+
match: \b(?i:debugtext)\b
|
136
|
+
- name: support.function.utility.fxscript
|
137
|
+
match: \b(?i:Assert|CircleLight|ColorOf|ConvertImage|GetConversionMatrix|GetPixelFormat|Highlight|MatrixConcat|PointTrack|Random(Noise|Seed|Table)?|SetPixelFormat|SysTime|Truncate)\b
|
138
|
+
- name: support.function.joe.fxscript
|
139
|
+
match: \b((?i:absNoInt|ArrayFloatAbs|ArrayFloatAverage|ArrayFloatCount|ArrayFloatCountAll|ArrayFloatFlatten|ArrayFloatIndexExists|ArrayFloatInsertionSort|ArrayFloatMax|ArrayFloatMin|ArrayFloatNormalize|ArrayFloatPrint_r|ArrayFloatQuickSort|ArrayFloatSum|ArrayPointCount|ArrayPointReverse|ArrayPointWrap|BlurChannelInPlace|BoundsOfPoly|ceil|CenterOfPoly|ChannelCopyFit|ChannelMultiplyYUV|ChannelScreen|ChannelView|ColorRampImage|ColorReporter|DeInterlace|DeInterlaceFast|DeInterlaceInterpolate|DifferenceMask|DimensionsOfPoly|DrawGridFrames|ease|easeIn|easeMiddle|easeOut|easeS|ErrorReporter|factorial|factorialabsNoInt|FastRotate|FieldDouble|fitPoly|fitRange|fitRect|floor|gcd|getField|indexExistsPt|isFloatArray|isIndexFloat|isIndexFloatArray|makeLevelMapBez|makeThresholdMapBez|max|min|mirrorRect|NumReporter|PlaceFrame|PointInPoly|pt3dReporter|PtReporter|RandomNoiseScaled|RandomSeedFPS|RGBtoYUVcolor|round|scaleToFit|sumNaturals|T_borderFade|whattype|YUVtoRGBcolor))\b
|
140
|
+
comment: "Joe Maller\xE2\x80\x99s personal FXScript Functions, these will be appearing on the FXScript Reference site someday."
|
141
|
+
foldingStopMarker: end(;|;?[ \t]*|;?[ \t]*//.*[ \t]*)
|
142
|
+
keyEquivalent: ^~F
|
@@ -0,0 +1,83 @@
|
|
1
|
+
---
|
2
|
+
name: Gri
|
3
|
+
fileTypes:
|
4
|
+
- gri
|
5
|
+
firstLineMatch: -[*]-( Mode:)? Gri -[*]-
|
6
|
+
scopeName: source.gri
|
7
|
+
uuid: A7E000BE-6A87-4D7E-A053-469DA0DFEA02
|
8
|
+
foldingStartMarker: (/\*\*|\{\s*$)
|
9
|
+
patterns:
|
10
|
+
- name: meta.function.gri
|
11
|
+
captures:
|
12
|
+
"1":
|
13
|
+
name: punctuation.definition.function.gri
|
14
|
+
"2":
|
15
|
+
name: entity.name.function.gri
|
16
|
+
"3":
|
17
|
+
name: punctuation.definition.function.gri
|
18
|
+
match: (\`)(.*)(')
|
19
|
+
- name: comment.line.number-sign.gri
|
20
|
+
begin: "#"
|
21
|
+
beginCaptures:
|
22
|
+
"0":
|
23
|
+
name: punctuation.definition.comment.gri
|
24
|
+
end: $\n?
|
25
|
+
patterns:
|
26
|
+
- name: punctuation.separator.continuation.gri
|
27
|
+
match: (?>\\\s*\n)
|
28
|
+
- name: comment.line.double-slash.gri
|
29
|
+
begin: //
|
30
|
+
beginCaptures:
|
31
|
+
"0":
|
32
|
+
name: punctuation.definition.comment.gri
|
33
|
+
end: $\n?
|
34
|
+
patterns:
|
35
|
+
- name: punctuation.separator.continuation.gri
|
36
|
+
match: (?>\\\s*\n)
|
37
|
+
- name: keyword.control.gri
|
38
|
+
match: \b(break|else|end|if|return|rpn|while)\b
|
39
|
+
- name: keyword.operator.arithmetic.gri
|
40
|
+
match: (\-|\+|\*|\/|%\/%|%%|\^)
|
41
|
+
- name: keyword.operator.assignment.gri
|
42
|
+
match: (=|<-)
|
43
|
+
- name: keyword.operator.comparison.gri
|
44
|
+
match: (==|!=)
|
45
|
+
- name: constant.numeric.gri
|
46
|
+
match: \b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)\b
|
47
|
+
- name: string.unquoted.heredoc.doublequote.gri
|
48
|
+
captures:
|
49
|
+
"1":
|
50
|
+
name: punctuation.definition.heredoc.gri
|
51
|
+
"3":
|
52
|
+
name: punctuation.definition.heredoc.gri
|
53
|
+
begin: (<< *")([^"]*)(")
|
54
|
+
end: ^\2$
|
55
|
+
- name: variable.other.synonym.gri
|
56
|
+
captures:
|
57
|
+
"1":
|
58
|
+
name: punctuation.definition.variable.gri
|
59
|
+
match: (\\)[\.a-zA-Z0-9_][\.a-zA-Z0-9_]*\b
|
60
|
+
- name: variable.other.variable.gri
|
61
|
+
captures:
|
62
|
+
"1":
|
63
|
+
name: punctuation.definition.variable.gri
|
64
|
+
"2":
|
65
|
+
name: punctuation.definition.variable.gri
|
66
|
+
match: (\.)[a-zA-Z0-9_][a-zA-Z0-9_]*(\.)
|
67
|
+
- name: variable.other.variabledot.gri
|
68
|
+
captures:
|
69
|
+
"1":
|
70
|
+
name: punctuation.definition.variable.gri
|
71
|
+
"2":
|
72
|
+
name: punctuation.definition.variable.gri
|
73
|
+
match: (\.\.)[a-zA-Z0-9_][a-zA-Z0-9_]*(\.\.)
|
74
|
+
- name: string.quoted.double.gri
|
75
|
+
endCaptures:
|
76
|
+
"0":
|
77
|
+
name: punctuation.definition.string.end.gri
|
78
|
+
begin: "\""
|
79
|
+
beginCaptures:
|
80
|
+
"0":
|
81
|
+
name: punctuation.definition.string.begin.gri
|
82
|
+
end: "\""
|
83
|
+
foldingStopMarker: (\*\*/|^\s*\})
|
@@ -0,0 +1,191 @@
|
|
1
|
+
---
|
2
|
+
name: Groovy
|
3
|
+
fileTypes:
|
4
|
+
- groovy
|
5
|
+
- gvy
|
6
|
+
scopeName: source.groovy.groovy
|
7
|
+
repository:
|
8
|
+
statement-remainder:
|
9
|
+
patterns:
|
10
|
+
- name: meta.definition.param-list.groovy
|
11
|
+
begin: \(
|
12
|
+
end: (?=\))
|
13
|
+
patterns:
|
14
|
+
- include: "#all-types"
|
15
|
+
- name: meta.definition.throws.groovy
|
16
|
+
captures:
|
17
|
+
"1":
|
18
|
+
name: keyword.other.class-fns.groovy
|
19
|
+
begin: (throws)
|
20
|
+
end: (?={)
|
21
|
+
patterns:
|
22
|
+
- include: "#all-types"
|
23
|
+
all-types:
|
24
|
+
patterns:
|
25
|
+
- include: "#support-type-built-ins-groovy"
|
26
|
+
- include: "#support-type-groovy"
|
27
|
+
- include: "#storage-type-groovy"
|
28
|
+
storage-type-groovy:
|
29
|
+
name: storage.type.groovy
|
30
|
+
match: \b(void|byte|short|char|int|long|float|double|boolean|([a-z]\w+\.)*[A-Z]\w+)\b
|
31
|
+
string-quoted-single:
|
32
|
+
name: string.quoted.single.groovy
|
33
|
+
begin: "'"
|
34
|
+
end: "'"
|
35
|
+
patterns:
|
36
|
+
- name: constant.character.escape.groovy
|
37
|
+
match: \\.
|
38
|
+
support-type-groovy:
|
39
|
+
name: support.type.groovy
|
40
|
+
match: \b(groovy(x)?\.([a-z]\w+\.)+[A-Z]\w+)\b
|
41
|
+
string-quoted-double:
|
42
|
+
name: string.quoted.double.groovy
|
43
|
+
begin: "\""
|
44
|
+
end: "\""
|
45
|
+
patterns:
|
46
|
+
- name: constant.character.escape.groovy
|
47
|
+
match: \\.
|
48
|
+
support-type-built-ins-groovy:
|
49
|
+
name: support.type.built-ins.groovy
|
50
|
+
match: \b(AWTError|AWTEvent|AWTEventListener|AWTEventListenerProxy|AWTEventMulticaster|AWTException|AWTKeyStroke|AWTPermission|AbstractAction|AbstractBorder|AbstractButton|AbstractCellEditor|AbstractCollection|AbstractColorChooserPanel|AbstractDocument|AbstractExecutorService|AbstractInterruptibleChannel|AbstractLayoutCache|AbstractList|AbstractListModel|AbstractMap|AbstractMethodError|AbstractPreferences|AbstractQueue|AbstractQueuedSynchronizer|AbstractSelectableChannel|AbstractSelectionKey|AbstractSelector|AbstractSequentialList|AbstractSet|AbstractSpinnerModel|AbstractTableModel|AbstractUndoableEdit|AbstractWriter|AccessControlContext|AccessControlException|AccessController|AccessException|Accessible|AccessibleAction|AccessibleAttributeSequence|AccessibleBundle|AccessibleComponent|AccessibleContext|AccessibleEditableText|AccessibleExtendedComponent|AccessibleExtendedTable|AccessibleExtendedText|AccessibleHyperlink|AccessibleHypertext|AccessibleIcon|AccessibleKeyBinding|AccessibleObject|AccessibleRelation|AccessibleRelationSet|AccessibleResourceBundle|AccessibleRole|AccessibleSelection|AccessibleState|AccessibleStateSet|AccessibleStreamable|AccessibleTable|AccessibleTableModelChange|AccessibleText|AccessibleTextSequence|AccessibleValue|AccountException|AccountExpiredException|AccountLockedException|AccountNotFoundException|Acl|AclEntry|AclNotFoundException|Action|ActionEvent|ActionListener|ActionMap|ActionMapUIResource|Activatable|ActivateFailedException|ActivationDesc|ActivationException|ActivationGroup|ActivationGroupDesc|ActivationGroupID|ActivationGroup_Stub|ActivationID|ActivationInstantiator|ActivationMonitor|ActivationSystem|Activator|ActiveEvent|ActivityCompletedException|ActivityRequiredException|Adjustable|AdjustmentEvent|AdjustmentListener|Adler32|AffineTransform|AffineTransformOp|AlgorithmParameterGenerator|AlgorithmParameterGeneratorSpi|AlgorithmParameterSpec|AlgorithmParameters|AlgorithmParametersSpi|AllPermission|AlphaComposite|AlreadyBoundException|AlreadyConnectedException|AncestorEvent|AncestorListener|AnnotatedElement|Annotation|AnnotationFormatError|AnnotationTypeMismatchException|AppConfigurationEntry|Appendable|Applet|AppletContext|AppletInitializer|AppletStub|Arc2D|Area|AreaAveragingScaleFilter|ArithmeticException|Array|ArrayBlockingQueue|ArrayIndexOutOfBoundsException|ArrayList|ArrayStoreException|ArrayType|Arrays|AssertionError|AsyncBoxView|AsynchronousCloseException|AtomicBoolean|AtomicInteger|AtomicIntegerArray|AtomicIntegerFieldUpdater|AtomicLong|AtomicLongArray|AtomicLongFieldUpdater|AtomicMarkableReference|AtomicReference|AtomicReferenceArray|AtomicReferenceFieldUpdater|AtomicStampedReference|Attribute|AttributeChangeNotification|AttributeChangeNotificationFilter|AttributeException|AttributeInUseException|AttributeList|AttributeModificationException|AttributeNotFoundException|AttributeSet|AttributeSetUtilities|AttributeValueExp|AttributedCharacterIterator|AttributedString|Attributes|AudioClip|AudioFileFormat|AudioFileReader|AudioFileWriter|AudioFormat|AudioInputStream|AudioPermission|AudioSystem|AuthPermission|AuthProvider|AuthenticationException|AuthenticationNotSupportedException|Authenticator|AuthorizeCallback|Autoscroll|BMPImageWriteParam|BackingStoreException|BadAttributeValueExpException|BadBinaryOpValueExpException|BadLocationException|BadPaddingException|BadStringOperationException|BandCombineOp|BandedSampleModel|BaseRowSet|BasicArrowButton|BasicAttribute|BasicAttributes|BasicBorders|BasicButtonListener|BasicButtonUI|BasicCheckBoxMenuItemUI|BasicCheckBoxUI|BasicColorChooserUI|BasicComboBoxEditor|BasicComboBoxRenderer|BasicComboBoxUI|BasicComboPopup|BasicControl|BasicDesktopIconUI|BasicDesktopPaneUI|BasicDirectoryModel|BasicEditorPaneUI|BasicFileChooserUI|BasicFormattedTextFieldUI|BasicGraphicsUtils|BasicHTML|BasicIconFactory|BasicInternalFrameTitlePane|BasicInternalFrameUI|BasicLabelUI|BasicListUI|BasicLookAndFeel|BasicMenuBarUI|BasicMenuItemUI|BasicMenuUI|BasicOptionPaneUI|BasicPanelUI|BasicPasswordFieldUI|BasicPermission|BasicPopupMenuSeparatorUI|BasicPopupMenuUI|BasicProgressBarUI|BasicRadioButtonMenuItemUI|BasicRadioButtonUI|BasicRootPaneUI|BasicScrollBarUI|BasicScrollPaneUI|BasicSeparatorUI|BasicSliderUI|BasicSpinnerUI|BasicSplitPaneDivider|BasicSplitPaneUI|BasicStroke|BasicTabbedPaneUI|BasicTableHeaderUI|BasicTableUI|BasicTextAreaUI|BasicTextFieldUI|BasicTextPaneUI|BasicTextUI|BasicToggleButtonUI|BasicToolBarSeparatorUI|BasicToolBarUI|BasicToolTipUI|BasicTreeUI|BasicViewportUI|BatchUpdateException|BeanContext|BeanContextChild|BeanContextChildComponentProxy|BeanContextChildSupport|BeanContextContainerProxy|BeanContextEvent|BeanContextMembershipEvent|BeanContextMembershipListener|BeanContextProxy|BeanContextServiceAvailableEvent|BeanContextServiceProvider|BeanContextServiceProviderBeanInfo|BeanContextServiceRevokedEvent|BeanContextServiceRevokedListener|BeanContextServices|BeanContextServicesListener|BeanContextServicesSupport|BeanContextSupport|BeanDescriptor|BeanInfo|Beans|BevelBorder|Bidi|BigDecimal|BigInteger|BinaryRefAddr|BindException|Binding|BitSet|Blob|BlockView|BlockingQueue|Book|Boolean|BooleanControl|Border|BorderFactory|BorderLayout|BorderUIResource|BoundedRangeModel|Box|BoxLayout|BoxView|BreakIterator|BrokenBarrierException|Buffer|BufferCapabilities|BufferOverflowException|BufferStrategy|BufferUnderflowException|BufferedImage|BufferedImageFilter|BufferedImageOp|BufferedInputStream|BufferedOutputStream|BufferedReader|BufferedWriter|Button|ButtonGroup|ButtonModel|ButtonUI|Byte|ByteArrayInputStream|ByteArrayOutputStream|ByteBuffer|ByteChannel|ByteLookupTable|ByteOrder|CMMException|CRC32|CRL|CRLException|CRLSelector|CSS|CacheRequest|CacheResponse|CachedRowSet|Calendar|Callable|CallableStatement|Callback|CallbackHandler|CancelablePrintJob|CancellationException|CancelledKeyException|CannotProceedException|CannotRedoException|CannotUndoException|Canvas|CardLayout|Caret|CaretEvent|CaretListener|CellEditor|CellEditorListener|CellRendererPane|CertPath|CertPathBuilder|CertPathBuilderException|CertPathBuilderResult|CertPathBuilderSpi|CertPathParameters|CertPathTrustManagerParameters|CertPathValidator|CertPathValidatorException|CertPathValidatorResult|CertPathValidatorSpi|CertSelector|CertStore|CertStoreException|CertStoreParameters|CertStoreSpi|Certificate|CertificateEncodingException|CertificateException|CertificateExpiredException|CertificateFactory|CertificateFactorySpi|CertificateNotYetValidException|CertificateParsingException|ChangeEvent|ChangeListener|ChangedCharSetException|Channel|Channels|CharArrayReader|CharArrayWriter|CharBuffer|CharConversionException|CharSequence|Character|CharacterCodingException|CharacterIterator|Charset|CharsetDecoder|CharsetEncoder|CharsetProvider|Checkbox|CheckboxGroup|CheckboxMenuItem|CheckedInputStream|CheckedOutputStream|Checksum|Choice|ChoiceCallback|ChoiceFormat|Chromaticity|Cipher|CipherInputStream|CipherOutputStream|CipherSpi|Class|ClassCastException|ClassCircularityError|ClassDefinition|ClassDesc|ClassFileTransformer|ClassFormatError|ClassLoader|ClassLoaderRepository|ClassLoadingMXBean|ClassNotFoundException|Clip|Clipboard|ClipboardOwner|Clob|CloneNotSupportedException|Cloneable|Closeable|ClosedByInterruptException|ClosedChannelException|ClosedSelectorException|CodeSigner|CodeSource|CoderMalfunctionError|CoderResult|CodingErrorAction|CollationElementIterator|CollationKey|Collator|Collection|CollectionCertStoreParameters|Collections|Color|ColorChooserComponentFactory|ColorChooserUI|ColorConvertOp|ColorModel|ColorSelectionModel|ColorSpace|ColorSupported|ColorType|ColorUIResource|ComboBoxEditor|ComboBoxModel|ComboBoxUI|ComboPopup|CommunicationException|Comparable|Comparator|CompilationMXBean|Compiler|CompletionService|Component|ComponentAdapter|ComponentColorModel|ComponentEvent|ComponentInputMap|ComponentInputMapUIResource|ComponentListener|ComponentOrientation|ComponentSampleModel|ComponentUI|ComponentView|Composite|CompositeContext|CompositeData|CompositeDataSupport|CompositeName|CompositeType|CompositeView|CompoundBorder|CompoundControl|CompoundEdit|CompoundName|Compression|ConcurrentHashMap|ConcurrentLinkedQueue|ConcurrentMap|ConcurrentModificationException|Condition|Configuration|ConfigurationException|ConfirmationCallback|ConnectException|ConnectIOException|Connection|ConnectionEvent|ConnectionEventListener|ConnectionPendingException|ConnectionPoolDataSource|ConsoleHandler|Constructor|Container|ContainerAdapter|ContainerEvent|ContainerListener|ContainerOrderFocusTraversalPolicy|ContentHandler|ContentHandlerFactory|ContentModel|Context|ContextNotEmptyException|ContextualRenderedImageFactory|Control|ControlFactory|ControllerEventListener|ConvolveOp|CookieHandler|Copies|CopiesSupported|CopyOnWriteArrayList|CopyOnWriteArraySet|CountDownLatch|CounterMonitor|CounterMonitorMBean|CredentialException|CredentialExpiredException|CredentialNotFoundException|CropImageFilter|CubicCurve2D|Currency|Cursor|Customizer|CyclicBarrier|DESKeySpec|DESedeKeySpec|DGC|DHGenParameterSpec|DHKey|DHParameterSpec|DHPrivateKey|DHPrivateKeySpec|DHPublicKey|DHPublicKeySpec|DOMLocator|DOMResult|DOMSource|DSAKey|DSAKeyPairGenerator|DSAParameterSpec|DSAParams|DSAPrivateKey|DSAPrivateKeySpec|DSAPublicKey|DSAPublicKeySpec|DTD|DTDConstants|DataBuffer|DataBufferByte|DataBufferDouble|DataBufferFloat|DataBufferInt|DataBufferShort|DataBufferUShort|DataFlavor|DataFormatException|DataInput|DataInputStream|DataLine|DataOutput|DataOutputStream|DataSource|DataTruncation|DatabaseMetaData|DatagramChannel|DatagramPacket|DatagramSocket|DatagramSocketImpl|DatagramSocketImplFactory|DatatypeConfigurationException|DatatypeConstants|DatatypeFactory|Date|DateFormat|DateFormatSymbols|DateFormatter|DateTimeAtCompleted|DateTimeAtCreation|DateTimeAtProcessing|DateTimeSyntax|DebugGraphics|DecimalFormat|DecimalFormatSymbols|DefaultBoundedRangeModel|DefaultButtonModel|DefaultCaret|DefaultCellEditor|DefaultColorSelectionModel|DefaultComboBoxModel|DefaultDesktopManager|DefaultEditorKit|DefaultFocusManager|DefaultFocusTraversalPolicy|DefaultFormatter|DefaultFormatterFactory|DefaultHighlighter|DefaultKeyboardFocusManager|DefaultListCellRenderer|DefaultListModel|DefaultListSelectionModel|DefaultLoaderRepository|DefaultMenuLayout|DefaultMetalTheme|DefaultMutableTreeNode|DefaultPersistenceDelegate|DefaultSingleSelectionModel|DefaultStyledDocument|DefaultTableCellRenderer|DefaultTableColumnModel|DefaultTableModel|DefaultTextUI|DefaultTreeCellEditor|DefaultTreeCellRenderer|DefaultTreeModel|DefaultTreeSelectionModel|Deflater|DeflaterOutputStream|DelayQueue|Delayed|DelegationPermission|Deprecated|Descriptor|DescriptorAccess|DescriptorSupport|DesignMode|DesktopIconUI|DesktopManager|DesktopPaneUI|Destination|DestroyFailedException|Destroyable|Dialog|Dictionary|DigestException|DigestInputStream|DigestOutputStream|Dimension|Dimension2D|DimensionUIResource|DirContext|DirObjectFactory|DirStateFactory|DirectColorModel|DirectoryManager|DisplayMode|DnDConstants|Doc|DocAttribute|DocAttributeSet|DocFlavor|DocPrintJob|Document|DocumentBuilder|DocumentBuilderFactory|DocumentEvent|DocumentFilter|DocumentListener|DocumentName|DocumentParser|Documented|DomainCombiner|Double|DoubleBuffer|DragGestureEvent|DragGestureListener|DragGestureRecognizer|DragSource|DragSourceAdapter|DragSourceContext|DragSourceDragEvent|DragSourceDropEvent|DragSourceEvent|DragSourceListener|DragSourceMotionListener|Driver|DriverManager|DriverPropertyInfo|DropTarget|DropTargetAdapter|DropTargetContext|DropTargetDragEvent|DropTargetDropEvent|DropTargetEvent|DropTargetListener|DuplicateFormatFlagsException|Duration|DynamicMBean|ECField|ECFieldF2m|ECFieldFp|ECGenParameterSpec|ECKey|ECParameterSpec|ECPoint|ECPrivateKey|ECPrivateKeySpec|ECPublicKey|ECPublicKeySpec|EOFException|EditorKit|Element|ElementIterator|ElementType|Ellipse2D|EllipticCurve|EmptyBorder|EmptyStackException|EncodedKeySpec|Encoder|EncryptedPrivateKeyInfo|Entity|Enum|EnumConstantNotPresentException|EnumControl|EnumMap|EnumSet|EnumSyntax|Enumeration|Error|ErrorListener|ErrorManager|EtchedBorder|Event|EventContext|EventDirContext|EventHandler|EventListener|EventListenerList|EventListenerProxy|EventObject|EventQueue|EventSetDescriptor|Exception|ExceptionInInitializerError|ExceptionListener|Exchanger|ExecutionException|Executor|ExecutorCompletionService|ExecutorService|Executors|ExemptionMechanism|ExemptionMechanismException|ExemptionMechanismSpi|ExpandVetoException|ExportException|Expression|ExtendedRequest|ExtendedResponse|Externalizable|FactoryConfigurationError|FailedLoginException|FeatureDescriptor|Fidelity|Field|FieldPosition|FieldView|File|FileCacheImageInputStream|FileCacheImageOutputStream|FileChannel|FileChooserUI|FileDescriptor|FileDialog|FileFilter|FileHandler|FileImageInputStream|FileImageOutputStream|FileInputStream|FileLock|FileLockInterruptionException|FileNameMap|FileNotFoundException|FileOutputStream|FilePermission|FileReader|FileSystemView|FileView|FileWriter|FilenameFilter|Filter|FilterInputStream|FilterOutputStream|FilterReader|FilterWriter|FilteredImageSource|FilteredRowSet|Finishings|FixedHeightLayoutCache|FlatteningPathIterator|FlavorEvent|FlavorException|FlavorListener|FlavorMap|FlavorTable|Float|FloatBuffer|FloatControl|FlowLayout|FlowView|Flushable|FocusAdapter|FocusEvent|FocusListener|FocusManager|FocusTraversalPolicy|Font|FontFormatException|FontMetrics|FontRenderContext|FontUIResource|FormSubmitEvent|FormView|Format|FormatConversionProvider|FormatFlagsConversionMismatchException|Formattable|FormattableFlags|Formatter|FormatterClosedException|Frame|Future|FutureTask|GZIPInputStream|GZIPOutputStream|GapContent|GarbageCollectorMXBean|GatheringByteChannel|GaugeMonitor|GaugeMonitorMBean|GeneralPath|GeneralSecurityException|GenericArrayType|GenericDeclaration|GenericSignatureFormatError|GlyphJustificationInfo|GlyphMetrics|GlyphVector|GlyphView|GradientPaint|GraphicAttribute|Graphics|Graphics2D|GraphicsConfigTemplate|GraphicsConfiguration|GraphicsDevice|GraphicsEnvironment|GrayFilter|GregorianCalendar|GridBagConstraints|GridBagLayout|GridLayout|Group|Guard|GuardedObject|HTML|HTMLDocument|HTMLEditorKit|HTMLFrameHyperlinkEvent|HTMLWriter|Handler|HandshakeCompletedEvent|HandshakeCompletedListener|HasControls|HashAttributeSet|HashDocAttributeSet|HashMap|HashPrintJobAttributeSet|HashPrintRequestAttributeSet|HashPrintServiceAttributeSet|HashSet|Hashtable|HeadlessException|HierarchyBoundsAdapter|HierarchyBoundsListener|HierarchyEvent|HierarchyListener|Highlighter|HostnameVerifier|HttpRetryException|HttpURLConnection|HttpsURLConnection|HyperlinkEvent|HyperlinkListener|ICC_ColorSpace|ICC_Profile|ICC_ProfileGray|ICC_ProfileRGB|IIOByteBuffer|IIOException|IIOImage|IIOInvalidTreeException|IIOMetadata|IIOMetadataController|IIOMetadataFormat|IIOMetadataFormatImpl|IIOMetadataNode|IIOParam|IIOParamController|IIOReadProgressListener|IIOReadUpdateListener|IIOReadWarningListener|IIORegistry|IIOServiceProvider|IIOWriteProgressListener|IIOWriteWarningListener|IOException|Icon|IconUIResource|IconView|Identity|IdentityHashMap|IdentityScope|IllegalAccessError|IllegalAccessException|IllegalArgumentException|IllegalBlockSizeException|IllegalBlockingModeException|IllegalCharsetNameException|IllegalClassFormatException|IllegalComponentStateException|IllegalFormatCodePointException|IllegalFormatConversionException|IllegalFormatException|IllegalFormatFlagsException|IllegalFormatPrecisionException|IllegalFormatWidthException|IllegalMonitorStateException|IllegalPathStateException|IllegalSelectorException|IllegalStateException|IllegalThreadStateException|Image|ImageCapabilities|ImageConsumer|ImageFilter|ImageGraphicAttribute|ImageIO|ImageIcon|ImageInputStream|ImageInputStreamImpl|ImageInputStreamSpi|ImageObserver|ImageOutputStream|ImageOutputStreamImpl|ImageOutputStreamSpi|ImageProducer|ImageReadParam|ImageReader|ImageReaderSpi|ImageReaderWriterSpi|ImageTranscoder|ImageTranscoderSpi|ImageTypeSpecifier|ImageView|ImageWriteParam|ImageWriter|ImageWriterSpi|ImagingOpException|IncompatibleClassChangeError|IncompleteAnnotationException|IndexColorModel|IndexOutOfBoundsException|IndexedPropertyChangeEvent|IndexedPropertyDescriptor|Inet4Address|Inet6Address|InetAddress|InetSocketAddress|Inflater|InflaterInputStream|InheritableThreadLocal|Inherited|InitialContext|InitialContextFactory|InitialContextFactoryBuilder|InitialDirContext|InitialLdapContext|InlineView|InputContext|InputEvent|InputMap|InputMapUIResource|InputMethod|InputMethodContext|InputMethodDescriptor|InputMethodEvent|InputMethodHighlight|InputMethodListener|InputMethodRequests|InputMismatchException|InputStream|InputStreamReader|InputSubset|InputVerifier|Insets|InsetsUIResource|InstanceAlreadyExistsException|InstanceNotFoundException|InstantiationError|InstantiationException|Instrument|Instrumentation|InsufficientResourcesException|IntBuffer|Integer|IntegerSyntax|InternalError|InternalFrameAdapter|InternalFrameEvent|InternalFrameFocusTraversalPolicy|InternalFrameListener|InternalFrameUI|InternationalFormatter|InterruptedException|InterruptedIOException|InterruptedNamingException|InterruptibleChannel|IntrospectionException|Introspector|InvalidActivityException|InvalidAlgorithmParameterException|InvalidApplicationException|InvalidAttributeIdentifierException|InvalidAttributeValueException|InvalidAttributesException|InvalidClassException|InvalidDnDOperationException|InvalidKeyException|InvalidKeySpecException|InvalidMarkException|InvalidMidiDataException|InvalidNameException|InvalidObjectException|InvalidOpenTypeException|InvalidParameterException|InvalidParameterSpecException|InvalidPreferencesFormatException|InvalidPropertiesFormatException|InvalidRelationIdException|InvalidRelationServiceException|InvalidRelationTypeException|InvalidRoleInfoException|InvalidRoleValueException|InvalidSearchControlsException|InvalidSearchFilterException|InvalidTargetObjectTypeException|InvalidTransactionException|InvocationEvent|InvocationHandler|InvocationTargetException|ItemEvent|ItemListener|ItemSelectable|Iterable|Iterator|IvParameterSpec|JApplet|JButton|JCheckBox|JCheckBoxMenuItem|JColorChooser|JComboBox|JComponent|JDesktopPane|JDialog|JEditorPane|JFileChooser|JFormattedTextField|JFrame|JInternalFrame|JLabel|JLayeredPane|JList|JMException|JMRuntimeException|JMXAuthenticator|JMXConnectionNotification|JMXConnector|JMXConnectorFactory|JMXConnectorProvider|JMXConnectorServer|JMXConnectorServerFactory|JMXConnectorServerMBean|JMXConnectorServerProvider|JMXPrincipal|JMXProviderException|JMXServerErrorException|JMXServiceURL|JMenu|JMenuBar|JMenuItem|JOptionPane|JPEGHuffmanTable|JPEGImageReadParam|JPEGImageWriteParam|JPEGQTable|JPanel|JPasswordField|JPopupMenu|JProgressBar|JRadioButton|JRadioButtonMenuItem|JRootPane|JScrollBar|JScrollPane|JSeparator|JSlider|JSpinner|JSplitPane|JTabbedPane|JTable|JTableHeader|JTextArea|JTextComponent|JTextField|JTextPane|JToggleButton|JToolBar|JToolTip|JTree|JViewport|JWindow|JarEntry|JarException|JarFile|JarInputStream|JarOutputStream|JarURLConnection|JdbcRowSet|JobAttributes|JobHoldUntil|JobImpressions|JobImpressionsCompleted|JobImpressionsSupported|JobKOctets|JobKOctetsProcessed|JobKOctetsSupported|JobMediaSheets|JobMediaSheetsCompleted|JobMediaSheetsSupported|JobMessageFromOperator|JobName|JobOriginatingUserName|JobPriority|JobPrioritySupported|JobSheets|JobState|JobStateReason|JobStateReasons|JoinRowSet|Joinable|KerberosKey|KerberosPrincipal|KerberosTicket|Kernel|Key|KeyAdapter|KeyAgreement|KeyAgreementSpi|KeyAlreadyExistsException|KeyEvent|KeyEventDispatcher|KeyEventPostProcessor|KeyException|KeyFactory|KeyFactorySpi|KeyGenerator|KeyGeneratorSpi|KeyListener|KeyManagementException|KeyManager|KeyManagerFactory|KeyManagerFactorySpi|KeyPair|KeyPairGenerator|KeyPairGeneratorSpi|KeyRep|KeySpec|KeyStore|KeyStoreBuilderParameters|KeyStoreException|KeyStoreSpi|KeyStroke|KeyboardFocusManager|Keymap|LDAPCertStoreParameters|Label|LabelUI|LabelView|LanguageCallback|LastOwnerException|LayeredHighlighter|LayoutFocusTraversalPolicy|LayoutManager|LayoutManager2|LayoutQueue|LdapContext|LdapName|LdapReferralException|Lease|Level|LimitExceededException|Line|Line2D|LineBorder|LineBreakMeasurer|LineEvent|LineListener|LineMetrics|LineNumberInputStream|LineNumberReader|LineUnavailableException|LinkException|LinkLoopException|LinkRef|LinkageError|LinkedBlockingQueue|LinkedHashMap|LinkedHashSet|LinkedList|List|ListCellRenderer|ListDataEvent|ListDataListener|ListIterator|ListModel|ListResourceBundle|ListSelectionEvent|ListSelectionListener|ListSelectionModel|ListUI|ListView|ListenerNotFoundException|LoaderHandler|Locale|LocateRegistry|Lock|LockSupport|LogManager|LogRecord|LogStream|Logger|LoggingMXBean|LoggingPermission|LoginContext|LoginException|LoginModule|Long|LongBuffer|LookAndFeel|LookupOp|LookupTable|MBeanAttributeInfo|MBeanConstructorInfo|MBeanException|MBeanFeatureInfo|MBeanInfo|MBeanNotificationInfo|MBeanOperationInfo|MBeanParameterInfo|MBeanPermission|MBeanRegistration|MBeanRegistrationException|MBeanServer|MBeanServerBuilder|MBeanServerConnection|MBeanServerDelegate|MBeanServerDelegateMBean|MBeanServerFactory|MBeanServerForwarder|MBeanServerInvocationHandler|MBeanServerNotification|MBeanServerNotificationFilter|MBeanServerPermission|MBeanTrustPermission|MGF1ParameterSpec|MLet|MLetMBean|Mac|MacSpi|MalformedInputException|MalformedLinkException|MalformedObjectNameException|MalformedParameterizedTypeException|MalformedURLException|ManageReferralControl|ManagementFactory|ManagementPermission|ManagerFactoryParameters|Manifest|Map|MappedByteBuffer|MarshalException|MarshalledObject|MaskFormatter|MatchResult|Matcher|Math|MathContext|MatteBorder|Media|MediaName|MediaPrintableArea|MediaSize|MediaSizeName|MediaTracker|MediaTray|Member|MemoryCacheImageInputStream|MemoryCacheImageOutputStream|MemoryHandler|MemoryImageSource|MemoryMXBean|MemoryManagerMXBean|MemoryNotificationInfo|MemoryPoolMXBean|MemoryType|MemoryUsage|Menu|MenuBar|MenuBarUI|MenuComponent|MenuContainer|MenuDragMouseEvent|MenuDragMouseListener|MenuElement|MenuEvent|MenuItem|MenuItemUI|MenuKeyEvent|MenuKeyListener|MenuListener|MenuSelectionManager|MenuShortcut|MessageDigest|MessageDigestSpi|MessageFormat|MetaEventListener|MetaMessage|MetalBorders|MetalButtonUI|MetalCheckBoxIcon|MetalCheckBoxUI|MetalComboBoxButton|MetalComboBoxEditor|MetalComboBoxIcon|MetalComboBoxUI|MetalDesktopIconUI|MetalFileChooserUI|MetalIconFactory|MetalInternalFrameTitlePane|MetalInternalFrameUI|MetalLabelUI|MetalLookAndFeel|MetalMenuBarUI|MetalPopupMenuSeparatorUI|MetalProgressBarUI|MetalRadioButtonUI|MetalRootPaneUI|MetalScrollBarUI|MetalScrollButton|MetalScrollPaneUI|MetalSeparatorUI|MetalSliderUI|MetalSplitPaneUI|MetalTabbedPaneUI|MetalTextFieldUI|MetalTheme|MetalToggleButtonUI|MetalToolBarUI|MetalToolTipUI|MetalTreeUI|Method|MethodDescriptor|MidiChannel|MidiDevice|MidiDeviceProvider|MidiEvent|MidiFileFormat|MidiFileReader|MidiFileWriter|MidiMessage|MidiSystem|MidiUnavailableException|MimeTypeParseException|MinimalHTMLWriter|MissingFormatArgumentException|MissingFormatWidthException|MissingResourceException|Mixer|MixerProvider|ModelMBean|ModelMBeanAttributeInfo|ModelMBeanConstructorInfo|ModelMBeanInfo|ModelMBeanInfoSupport|ModelMBeanNotificationBroadcaster|ModelMBeanNotificationInfo|ModelMBeanOperationInfo|ModificationItem|Modifier|Monitor|MonitorMBean|MonitorNotification|MonitorSettingException|MouseAdapter|MouseDragGestureRecognizer|MouseEvent|MouseInfo|MouseInputAdapter|MouseInputListener|MouseListener|MouseMotionAdapter|MouseMotionListener|MouseWheelEvent|MouseWheelListener|MultiButtonUI|MultiColorChooserUI|MultiComboBoxUI|MultiDesktopIconUI|MultiDesktopPaneUI|MultiDoc|MultiDocPrintJob|MultiDocPrintService|MultiFileChooserUI|MultiInternalFrameUI|MultiLabelUI|MultiListUI|MultiLookAndFeel|MultiMenuBarUI|MultiMenuItemUI|MultiOptionPaneUI|MultiPanelUI|MultiPixelPackedSampleModel|MultiPopupMenuUI|MultiProgressBarUI|MultiRootPaneUI|MultiScrollBarUI|MultiScrollPaneUI|MultiSeparatorUI|MultiSliderUI|MultiSpinnerUI|MultiSplitPaneUI|MultiTabbedPaneUI|MultiTableHeaderUI|MultiTableUI|MultiTextUI|MultiToolBarUI|MultiToolTipUI|MultiTreeUI|MultiViewportUI|MulticastSocket|MultipleDocumentHandling|MultipleMaster|MutableAttributeSet|MutableComboBoxModel|MutableTreeNode|Name|NameAlreadyBoundException|NameCallback|NameClassPair|NameNotFoundException|NameParser|NamespaceChangeListener|NamespaceContext|Naming|NamingEnumeration|NamingEvent|NamingException|NamingExceptionEvent|NamingListener|NamingManager|NamingSecurityException|NavigationFilter|NegativeArraySizeException|NetPermission|NetworkInterface|NoClassDefFoundError|NoConnectionPendingException|NoInitialContextException|NoPermissionException|NoRouteToHostException|NoSuchAlgorithmException|NoSuchAttributeException|NoSuchElementException|NoSuchFieldError|NoSuchFieldException|NoSuchMethodError|NoSuchMethodException|NoSuchObjectException|NoSuchPaddingException|NoSuchProviderException|NodeChangeEvent|NodeChangeListener|NonReadableChannelException|NonWritableChannelException|NoninvertibleTransformException|NotActiveException|NotBoundException|NotCompliantMBeanException|NotContextException|NotOwnerException|NotSerializableException|NotYetBoundException|NotYetConnectedException|Notification|NotificationBroadcaster|NotificationBroadcasterSupport|NotificationEmitter|NotificationFilter|NotificationFilterSupport|NotificationListener|NotificationResult|NullCipher|NullPointerException|Number|NumberFormat|NumberFormatException|NumberFormatter|NumberOfDocuments|NumberOfInterveningJobs|NumberUp|NumberUpSupported|NumericShaper|OAEPParameterSpec|ObjID|Object|ObjectChangeListener|ObjectFactory|ObjectFactoryBuilder|ObjectInput|ObjectInputStream|ObjectInputValidation|ObjectInstance|ObjectName|ObjectOutput|ObjectOutputStream|ObjectStreamClass|ObjectStreamConstants|ObjectStreamException|ObjectStreamField|ObjectView|Observable|Observer|OceanTheme|OpenDataException|OpenMBeanAttributeInfo|OpenMBeanAttributeInfoSupport|OpenMBeanConstructorInfo|OpenMBeanConstructorInfoSupport|OpenMBeanInfo|OpenMBeanInfoSupport|OpenMBeanOperationInfo|OpenMBeanOperationInfoSupport|OpenMBeanParameterInfo|OpenMBeanParameterInfoSupport|OpenType|OperatingSystemMXBean|Operation|OperationNotSupportedException|OperationsException|Option|OptionPaneUI|OptionalDataException|OrientationRequested|OutOfMemoryError|OutputDeviceAssigned|OutputKeys|OutputStream|OutputStreamWriter|OverlappingFileLockException|OverlayLayout|Override|Owner|PBEKey|PBEKeySpec|PBEParameterSpec|PDLOverrideSupported|PKCS8EncodedKeySpec|PKIXBuilderParameters|PKIXCertPathBuilderResult|PKIXCertPathChecker|PKIXCertPathValidatorResult|PKIXParameters|PSSParameterSpec|PSource|Pack200|Package|PackedColorModel|PageAttributes|PageFormat|PageRanges|Pageable|PagedResultsControl|PagedResultsResponseControl|PagesPerMinute|PagesPerMinuteColor|Paint|PaintContext|PaintEvent|Panel|PanelUI|Paper|ParagraphView|ParameterBlock|ParameterDescriptor|ParameterMetaData|ParameterizedType|ParseException|ParsePosition|Parser|ParserConfigurationException|ParserDelegator|PartialResultException|PasswordAuthentication|PasswordCallback|PasswordView|Patch|PathIterator|Pattern|PatternSyntaxException|Permission|PermissionCollection|Permissions|PersistenceDelegate|PersistentMBean|PhantomReference|Pipe|PipedInputStream|PipedOutputStream|PipedReader|PipedWriter|PixelGrabber|PixelInterleavedSampleModel|PlainDocument|PlainView|Point|Point2D|PointerInfo|Policy|PolicyNode|PolicyQualifierInfo|Polygon|PooledConnection|Popup|PopupFactory|PopupMenu|PopupMenuEvent|PopupMenuListener|PopupMenuUI|Port|PortUnreachableException|PortableRemoteObject|PortableRemoteObjectDelegate|Position|Predicate|PreferenceChangeEvent|PreferenceChangeListener|Preferences|PreferencesFactory|PreparedStatement|PresentationDirection|Principal|PrintEvent|PrintException|PrintGraphics|PrintJob|PrintJobAdapter|PrintJobAttribute|PrintJobAttributeEvent|PrintJobAttributeListener|PrintJobAttributeSet|PrintJobEvent|PrintJobListener|PrintQuality|PrintRequestAttribute|PrintRequestAttributeSet|PrintService|PrintServiceAttribute|PrintServiceAttributeEvent|PrintServiceAttributeListener|PrintServiceAttributeSet|PrintServiceLookup|PrintStream|PrintWriter|Printable|PrinterAbortException|PrinterException|PrinterGraphics|PrinterIOException|PrinterInfo|PrinterIsAcceptingJobs|PrinterJob|PrinterLocation|PrinterMakeAndModel|PrinterMessageFromOperator|PrinterMoreInfo|PrinterMoreInfoManufacturer|PrinterName|PrinterResolution|PrinterState|PrinterStateReason|PrinterStateReasons|PrinterURI|PriorityBlockingQueue|PriorityQueue|PrivateClassLoader|PrivateCredentialPermission|PrivateKey|PrivateMLet|PrivilegedAction|PrivilegedActionException|PrivilegedExceptionAction|Process|ProcessBuilder|ProfileDataException|ProgressBarUI|ProgressMonitor|ProgressMonitorInputStream|Properties|PropertyChangeEvent|PropertyChangeListener|PropertyChangeListenerProxy|PropertyChangeSupport|PropertyDescriptor|PropertyEditor|PropertyEditorManager|PropertyEditorSupport|PropertyPermission|PropertyResourceBundle|PropertyVetoException|ProtectionDomain|ProtocolException|Provider|ProviderException|Proxy|ProxySelector|PublicKey|PushbackInputStream|PushbackReader|QName|QuadCurve2D|Query|QueryEval|QueryExp|Queue|QueuedJobCount|RC2ParameterSpec|RC5ParameterSpec|RGBImageFilter|RMIClassLoader|RMIClassLoaderSpi|RMIClientSocketFactory|RMIConnection|RMIConnectionImpl|RMIConnectionImpl_Stub|RMIConnector|RMIConnectorServer|RMIFailureHandler|RMIIIOPServerImpl|RMIJRMPServerImpl|RMISecurityException|RMISecurityManager|RMIServer|RMIServerImpl|RMIServerImpl_Stub|RMIServerSocketFactory|RMISocketFactory|RSAKey|RSAKeyGenParameterSpec|RSAMultiPrimePrivateCrtKey|RSAMultiPrimePrivateCrtKeySpec|RSAOtherPrimeInfo|RSAPrivateCrtKey|RSAPrivateCrtKeySpec|RSAPrivateKey|RSAPrivateKeySpec|RSAPublicKey|RSAPublicKeySpec|RTFEditorKit|Random|RandomAccess|RandomAccessFile|Raster|RasterFormatException|RasterOp|Rdn|ReadOnlyBufferException|ReadWriteLock|Readable|ReadableByteChannel|Reader|RealmCallback|RealmChoiceCallback|Receiver|Rectangle|Rectangle2D|RectangularShape|ReentrantLock|ReentrantReadWriteLock|Ref|RefAddr|Reference|ReferenceQueue|ReferenceUriSchemesSupported|Referenceable|ReferralException|ReflectPermission|ReflectionException|RefreshFailedException|Refreshable|Region|RegisterableService|Registry|RegistryHandler|RejectedExecutionException|RejectedExecutionHandler|Relation|RelationException|RelationNotFoundException|RelationNotification|RelationService|RelationServiceMBean|RelationServiceNotRegisteredException|RelationSupport|RelationSupportMBean|RelationType|RelationTypeNotFoundException|RelationTypeSupport|Remote|RemoteCall|RemoteException|RemoteObject|RemoteObjectInvocationHandler|RemoteRef|RemoteServer|RemoteStub|RenderContext|RenderableImage|RenderableImageOp|RenderableImageProducer|RenderedImage|RenderedImageFactory|Renderer|RenderingHints|RepaintManager|ReplicateScaleFilter|RequestingUserName|RequiredModelMBean|RescaleOp|ResolutionSyntax|ResolveResult|Resolver|ResourceBundle|ResponseCache|Result|ResultSet|ResultSetMetaData|Retention|RetentionPolicy|ReverbType|Robot|Role|RoleInfo|RoleInfoNotFoundException|RoleList|RoleNotFoundException|RoleResult|RoleStatus|RoleUnresolved|RoleUnresolvedList|RootPaneContainer|RootPaneUI|RoundRectangle2D|RoundingMode|RowMapper|RowSet|RowSetEvent|RowSetInternal|RowSetListener|RowSetMetaData|RowSetMetaDataImpl|RowSetReader|RowSetWarning|RowSetWriter|RuleBasedCollator|Runnable|Runtime|RuntimeErrorException|RuntimeException|RuntimeMBeanException|RuntimeMXBean|RuntimeOperationsException|RuntimePermission|SAXParser|SAXParserFactory|SAXResult|SAXSource|SAXTransformerFactory|SQLData|SQLException|SQLInput|SQLInputImpl|SQLOutput|SQLOutputImpl|SQLPermission|SQLWarning|SSLContext|SSLContextSpi|SSLEngine|SSLEngineResult|SSLException|SSLHandshakeException|SSLKeyException|SSLPeerUnverifiedException|SSLPermission|SSLProtocolException|SSLServerSocket|SSLServerSocketFactory|SSLSession|SSLSessionBindingEvent|SSLSessionBindingListener|SSLSessionContext|SSLSocket|SSLSocketFactory|SampleModel|Sasl|SaslClient|SaslClientFactory|SaslException|SaslServer|SaslServerFactory|Savepoint|Scanner|ScatteringByteChannel|ScheduledExecutorService|ScheduledFuture|ScheduledThreadPoolExecutor|Schema|SchemaFactory|SchemaFactoryLoader|SchemaViolationException|ScrollBarUI|ScrollPane|ScrollPaneAdjustable|ScrollPaneConstants|ScrollPaneLayout|ScrollPaneUI|Scrollable|Scrollbar|SealedObject|SearchControls|SearchResult|SecretKey|SecretKeyFactory|SecretKeyFactorySpi|SecretKeySpec|SecureCacheResponse|SecureClassLoader|SecureRandom|SecureRandomSpi|Security|SecurityException|SecurityManager|SecurityPermission|Segment|SelectableChannel|SelectionKey|Selector|SelectorProvider|Semaphore|SeparatorUI|Sequence|SequenceInputStream|Sequencer|SerialArray|SerialBlob|SerialClob|SerialDatalink|SerialException|SerialJavaObject|SerialRef|SerialStruct|Serializable|SerializablePermission|ServerCloneException|ServerError|ServerException|ServerNotActiveException|ServerRef|ServerRuntimeException|ServerSocket|ServerSocketChannel|ServerSocketFactory|ServiceNotFoundException|ServicePermission|ServiceRegistry|ServiceUI|ServiceUIFactory|ServiceUnavailableException|Set|SetOfIntegerSyntax|Severity|Shape|ShapeGraphicAttribute|SheetCollate|Short|ShortBuffer|ShortBufferException|ShortLookupTable|ShortMessage|Sides|Signature|SignatureException|SignatureSpi|SignedObject|Signer|SimpleAttributeSet|SimpleBeanInfo|SimpleDateFormat|SimpleDoc|SimpleFormatter|SimpleTimeZone|SimpleType|SinglePixelPackedSampleModel|SingleSelectionModel|Size2DSyntax|SizeLimitExceededException|SizeRequirements|SizeSequence|Skeleton|SkeletonMismatchException|SkeletonNotFoundException|SliderUI|Socket|SocketAddress|SocketChannel|SocketException|SocketFactory|SocketHandler|SocketImpl|SocketImplFactory|SocketOptions|SocketPermission|SocketSecurityException|SocketTimeoutException|SoftBevelBorder|SoftReference|SortControl|SortKey|SortResponseControl|SortedMap|SortedSet|SortingFocusTraversalPolicy|Soundbank|SoundbankReader|SoundbankResource|Source|SourceDataLine|SourceLocator|SpinnerDateModel|SpinnerListModel|SpinnerModel|SpinnerNumberModel|SpinnerUI|SplitPaneUI|Spring|SpringLayout|SslRMIClientSocketFactory|SslRMIServerSocketFactory|Stack|StackOverflowError|StackTraceElement|StandardMBean|StartTlsRequest|StartTlsResponse|StateEdit|StateEditable|StateFactory|Statement|StreamCorruptedException|StreamHandler|StreamPrintService|StreamPrintServiceFactory|StreamResult|StreamSource|StreamTokenizer|StrictMath|String|StringBuffer|StringBufferInputStream|StringBuilder|StringCharacterIterator|StringContent|StringIndexOutOfBoundsException|StringMonitor|StringMonitorMBean|StringReader|StringRefAddr|StringSelection|StringTokenizer|StringValueExp|StringWriter|Stroke|Struct|Stub|StubDelegate|StubNotFoundException|Style|StyleConstants|StyleContext|StyleSheet|StyledDocument|StyledEditorKit|Subject|SubjectDelegationPermission|SubjectDomainCombiner|SupportedValuesAttribute|SuppressWarnings|SwingConstants|SwingPropertyChangeSupport|SwingUtilities|SyncFactory|SyncFactoryException|SyncFailedException|SyncProvider|SyncProviderException|SyncResolver|SynchronousQueue|SynthConstants|SynthContext|SynthGraphicsUtils|SynthLookAndFeel|SynthPainter|SynthStyle|SynthStyleFactory|Synthesizer|SysexMessage|System|SystemColor|SystemFlavorMap|TabExpander|TabSet|TabStop|TabableView|TabbedPaneUI|TableCellEditor|TableCellRenderer|TableColumn|TableColumnModel|TableColumnModelEvent|TableColumnModelListener|TableHeaderUI|TableModel|TableModelEvent|TableModelListener|TableUI|TableView|TabularData|TabularDataSupport|TabularType|TagElement|Target|TargetDataLine|TargetedNotification|Templates|TemplatesHandler|TextAction|TextArea|TextAttribute|TextComponent|TextEvent|TextField|TextHitInfo|TextInputCallback|TextLayout|TextListener|TextMeasurer|TextOutputCallback|TextSyntax|TextUI|TexturePaint|Thread|ThreadDeath|ThreadFactory|ThreadGroup|ThreadInfo|ThreadLocal|ThreadMXBean|ThreadPoolExecutor|Throwable|Tie|TileObserver|Time|TimeLimitExceededException|TimeUnit|TimeZone|TimeoutException|Timer|TimerAlarmClockNotification|TimerMBean|TimerNotification|TimerTask|Timestamp|TitledBorder|TooManyListenersException|ToolBarUI|ToolTipManager|ToolTipUI|Toolkit|Track|TransactionRequiredException|TransactionRolledbackException|TransactionalWriter|TransferHandler|Transferable|TransformAttribute|Transformer|TransformerConfigurationException|TransformerException|TransformerFactory|TransformerFactoryConfigurationError|TransformerHandler|Transmitter|Transparency|TreeCellEditor|TreeCellRenderer|TreeExpansionEvent|TreeExpansionListener|TreeMap|TreeModel|TreeModelEvent|TreeModelListener|TreeNode|TreePath|TreeSelectionEvent|TreeSelectionListener|TreeSelectionModel|TreeSet|TreeUI|TreeWillExpandListener|TrustAnchor|TrustManager|TrustManagerFactory|TrustManagerFactorySpi|Type|TypeInfoProvider|TypeNotPresentException|TypeVariable|Types|UID|UIDefaults|UIManager|UIResource|URI|URIException|URIResolver|URISyntax|URISyntaxException|URL|URLClassLoader|URLConnection|URLDecoder|URLEncoder|URLStreamHandler|URLStreamHandlerFactory|UTFDataFormatException|UUID|UndeclaredThrowableException|UndoManager|UndoableEdit|UndoableEditEvent|UndoableEditListener|UndoableEditSupport|UnexpectedException|UnicastRemoteObject|UnknownError|UnknownFormatConversionException|UnknownFormatFlagsException|UnknownGroupException|UnknownHostException|UnknownObjectException|UnknownServiceException|UnmappableCharacterException|UnmarshalException|UnmodifiableClassException|UnmodifiableSetException|UnrecoverableEntryException|UnrecoverableKeyException|Unreferenced|UnresolvedAddressException|UnresolvedPermission|UnsatisfiedLinkError|UnsolicitedNotification|UnsolicitedNotificationEvent|UnsolicitedNotificationListener|UnsupportedAddressTypeException|UnsupportedAudioFileException|UnsupportedCallbackException|UnsupportedCharsetException|UnsupportedClassVersionError|UnsupportedEncodingException|UnsupportedFlavorException|UnsupportedLookAndFeelException|UnsupportedOperationException|Util|UtilDelegate|Utilities|VMID|Validator|ValidatorHandler|ValueExp|ValueHandler|ValueHandlerMultiFormat|VariableHeightLayoutCache|Vector|VerifyError|VetoableChangeListener|VetoableChangeListenerProxy|VetoableChangeSupport|View|ViewFactory|ViewportLayout|ViewportUI|VirtualMachineError|Visibility|VoiceStatus|Void|VolatileImage|WeakHashMap|WeakReference|WebRowSet|WildcardType|Window|WindowAdapter|WindowConstants|WindowEvent|WindowFocusListener|WindowListener|WindowStateListener|WrappedPlainView|WritableByteChannel|WritableRaster|WritableRenderedImage|WriteAbortedException|Writer|X500Principal|X500PrivateCredential|X509CRL|X509CRLEntry|X509CRLSelector|X509CertSelector|X509Certificate|X509EncodedKeySpec|X509ExtendedKeyManager|X509Extension|X509KeyManager|X509TrustManager|XAConnection|XADataSource|XAException|XAResource|XMLConstants|XMLDecoder|XMLEncoder|XMLFormatter|XMLGregorianCalendar|XMLParseException|XPath|XPathConstants|XPathException|XPathExpression|XPathExpressionException|XPathFactory|XPathFactoryConfigurationException|XPathFunction|XPathFunctionException|XPathFunctionResolver|XPathVariableResolver|Xid|XmlReader|XmlWriter|ZipEntry|ZipException|ZipFile|ZipInputStream|ZipOutputStream|ZoneView)\b
|
51
|
+
uuid: B3A64888-EBBB-4436-8D9E-F1169C5D7613
|
52
|
+
foldingStartMarker: (\{\s*$|^\s*// \{\{\{)
|
53
|
+
patterns:
|
54
|
+
- name: comment.block.empty.groovy
|
55
|
+
match: /\*\*/
|
56
|
+
- name: comment.block.documentation.groovy
|
57
|
+
begin: (^\s*)?/\*\*
|
58
|
+
end: \*/(\s*\n)?
|
59
|
+
patterns:
|
60
|
+
- captures:
|
61
|
+
"1":
|
62
|
+
name: keyword.other.documentation.params.groovy
|
63
|
+
"3":
|
64
|
+
name: keyword.other.documentation.value.groovy
|
65
|
+
match: \*\s*(@(param|throws))\s*([a-z]\w+)\s*
|
66
|
+
- name: keyword.other.documentation.link.groovy
|
67
|
+
match: "{@link\\s+\\S*\\s+(\\S*)}"
|
68
|
+
- captures:
|
69
|
+
"1":
|
70
|
+
name: variable.parameter.documentation.groovy
|
71
|
+
match: \*\s*(@[a-zA-Z0-9_-]+)\s*
|
72
|
+
- name: meta.definition.class.groovy
|
73
|
+
captures:
|
74
|
+
"1":
|
75
|
+
name: storage.modifier.groovy
|
76
|
+
"3":
|
77
|
+
name: storage.type.groovy
|
78
|
+
"4":
|
79
|
+
name: entity.name.type.class.groovy
|
80
|
+
begin: |-
|
81
|
+
(?x)^\s*
|
82
|
+
((?:\b(def|public|private|protected|static|final|native|synchronized|abstract|threadsafe|transient)\b\s*)*) # modifier
|
83
|
+
(class|interface)\s+
|
84
|
+
(\w+)\s* # identifier
|
85
|
+
end: (?={)
|
86
|
+
patterns:
|
87
|
+
- name: meta.definition.class.extends.groovy
|
88
|
+
captures:
|
89
|
+
"1":
|
90
|
+
name: storage.modifier.groovy
|
91
|
+
begin: \b(extends)\b\s+
|
92
|
+
end: (?={|implements)
|
93
|
+
patterns:
|
94
|
+
- include: "#all-types"
|
95
|
+
- name: meta.definition.class.implements.groovy
|
96
|
+
captures:
|
97
|
+
"1":
|
98
|
+
name: storage.modifier.groovy
|
99
|
+
begin: \b(implements)\b\s+
|
100
|
+
end: (?={|extends)
|
101
|
+
patterns:
|
102
|
+
- include: "#all-types"
|
103
|
+
- name: meta.definition.constructor.groovy
|
104
|
+
captures:
|
105
|
+
"1":
|
106
|
+
name: storage.modifier.groovy
|
107
|
+
"3":
|
108
|
+
name: entity.name.function.constructor.groovy
|
109
|
+
begin: |-
|
110
|
+
(?x)^\s*
|
111
|
+
((?:\b(public|private|protected|static|final|native|synchronized|abstract|threadsafe|transient)\b\s*)*) # modifier
|
112
|
+
((?!(if|while|catch|this|print|return|synchronized|switch))\w+)\s* # identifier
|
113
|
+
(?!.*(;|\n\r|\n)) # abort if line has a ;
|
114
|
+
(?=\()
|
115
|
+
end: (?={)
|
116
|
+
patterns:
|
117
|
+
- include: "#statement-remainder"
|
118
|
+
- name: meta.definition.method.groovy
|
119
|
+
begin: |-
|
120
|
+
(?x)^\s*
|
121
|
+
((?:\b(def|public|private|protected|static|final|native|synchronized|abstract|threadsafe|transient)\b\s*)*) # modifier
|
122
|
+
(\b(void|boolean|byte|char|short|int|float|long|double|(\w+\.)*[A-Z]\w+)\b(<((?:\w+\.)*[A-Z]\w+)>|\[\s*\])?)\s* # type
|
123
|
+
(\w+)\s* # identifier
|
124
|
+
(?!.*(;|\n\r|\n)) # abort if line has a ;
|
125
|
+
(?=\()
|
126
|
+
beginCaptures:
|
127
|
+
"6":
|
128
|
+
name: storage.type.groovy
|
129
|
+
"8":
|
130
|
+
name: entity.name.function.groovy
|
131
|
+
"1":
|
132
|
+
name: storage.modifier.groovy
|
133
|
+
"4":
|
134
|
+
name: storage.type.groovy
|
135
|
+
end: (?={)
|
136
|
+
patterns:
|
137
|
+
- include: "#statement-remainder"
|
138
|
+
- name: constant.other.groovy
|
139
|
+
match: \b([A-Z][A-Z0-9_]+)\b
|
140
|
+
- name: comment.block.groovy
|
141
|
+
begin: /\*
|
142
|
+
end: \*/
|
143
|
+
- name: comment.line.double-slash.groovy
|
144
|
+
match: //.*$\n?
|
145
|
+
- include: "#all-types"
|
146
|
+
- name: storage.modifier.access-control.groovy
|
147
|
+
match: \b(def|private|protected|public)\b
|
148
|
+
- name: storage.modifier.groovy
|
149
|
+
match: \b(abstract|final|native|static|transient|synchronized|volatile|strictfp|extends|implements)\b
|
150
|
+
- name: storage.type.groovy
|
151
|
+
match: \b(class|interface)\b
|
152
|
+
- name: keyword.control.catch-exception.groovy
|
153
|
+
match: \b(try|catch|finally|throw)\b
|
154
|
+
- name: keyword.control.groovy
|
155
|
+
match: \b(return|break|case|continue|default|do|while|for|switch|if|else)\b
|
156
|
+
- name: meta.import.groovy
|
157
|
+
captures:
|
158
|
+
"1":
|
159
|
+
name: keyword.other.class-fns.groovy
|
160
|
+
"2":
|
161
|
+
name: entity.name.type.class.groovy
|
162
|
+
match: ^\s*(import)\s+([^ ;$]+);?
|
163
|
+
- name: meta.package.groovy
|
164
|
+
captures:
|
165
|
+
"1":
|
166
|
+
name: keyword.other.class-fns.groovy
|
167
|
+
"2":
|
168
|
+
name: entity.name.function.package.groovy
|
169
|
+
match: ^\s*(package)\s+([^ ;]+?);
|
170
|
+
- name: keyword.other.class-fns.groovy
|
171
|
+
match: \b(new|throws)\b
|
172
|
+
- name: keyword.operator.groovy
|
173
|
+
match: \b(instanceof)\b
|
174
|
+
- name: constant.language.groovy
|
175
|
+
match: \b(true|false|null)\b
|
176
|
+
- name: variable.language.groovy
|
177
|
+
match: \b(this|super)\b
|
178
|
+
- name: constant.numeric.groovy
|
179
|
+
match: \b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)([LlFfUuDd]|UL|ul)?\b
|
180
|
+
- include: "#string-quoted-double"
|
181
|
+
- include: "#string-quoted-single"
|
182
|
+
- name: keyword.operator.comparison.groovy
|
183
|
+
match: (===|==|!=|<=|>=|<=>|<>|<|>|<<)
|
184
|
+
- name: keyword.operator.increment-decrement.groovy
|
185
|
+
match: (\-\-|\+\+)
|
186
|
+
- name: keyword.operator.arithmetic.groovy
|
187
|
+
match: (\-|\+|\*|\/|%)
|
188
|
+
- name: keyword.operator.logical.groovy
|
189
|
+
match: (!|&&|\|\|)
|
190
|
+
foldingStopMarker: ^\s*(\}|// \}\}\}$)
|
191
|
+
keyEquivalent: ^~G
|