use prism-tomorrow.css
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
FOOBAR
|
||||
FOO_BAR_42
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["constant", "FOOBAR"],
|
||||
["constant", "FOO_BAR_42"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for constants.
|
@ -0,0 +1,13 @@
|
||||
foo(
|
||||
foo_bar_42 (
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["function", "foo"], ["punctuation", "("],
|
||||
["function", "foo_bar_42"], ["punctuation", "("]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for functions.
|
@ -0,0 +1,59 @@
|
||||
break
|
||||
catch
|
||||
case
|
||||
class;
|
||||
continue
|
||||
default
|
||||
else
|
||||
extends;
|
||||
final
|
||||
for
|
||||
if
|
||||
implements;
|
||||
import
|
||||
new;
|
||||
null
|
||||
private
|
||||
public
|
||||
return
|
||||
static
|
||||
super
|
||||
switch
|
||||
this
|
||||
try
|
||||
void
|
||||
while
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["keyword", "break"],
|
||||
["keyword", "catch"],
|
||||
["keyword", "case"],
|
||||
["keyword", "class"], ["punctuation", ";"],
|
||||
["keyword", "continue"],
|
||||
["keyword", "default"],
|
||||
["keyword", "else"],
|
||||
["keyword", "extends"], ["punctuation", ";"],
|
||||
["keyword", "final"],
|
||||
["keyword", "for"],
|
||||
["keyword", "if"],
|
||||
["keyword", "implements"], ["punctuation", ";"],
|
||||
["keyword", "import"],
|
||||
["keyword", "new"], ["punctuation", ";"],
|
||||
["keyword", "null"],
|
||||
["keyword", "private"],
|
||||
["keyword", "public"],
|
||||
["keyword", "return"],
|
||||
["keyword", "static"],
|
||||
["keyword", "super"],
|
||||
["keyword", "switch"],
|
||||
["keyword", "this"],
|
||||
["keyword", "try"],
|
||||
["keyword", "void"],
|
||||
["keyword", "while"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for keywords.
|
@ -0,0 +1,31 @@
|
||||
< << <=
|
||||
> >> >=
|
||||
& &&
|
||||
| ||
|
||||
% ?
|
||||
! !=
|
||||
= ==
|
||||
+ +=
|
||||
- -=
|
||||
* *=
|
||||
/ /=
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["operator", "<"], ["operator", "<<"], ["operator", "<="],
|
||||
["operator", ">"], ["operator", ">>"], ["operator", ">="],
|
||||
["operator", "&"], ["operator", "&&"],
|
||||
["operator", "|"], ["operator", "||"],
|
||||
["operator", "%"], ["operator", "?"],
|
||||
["operator", "!"], ["operator", "!="],
|
||||
["operator", "="], ["operator", "=="],
|
||||
["operator", "+"], ["operator", "+="],
|
||||
["operator", "-"], ["operator", "-="],
|
||||
["operator", "*"], ["operator", "*="],
|
||||
["operator", "/"], ["operator", "/="]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for operators.
|
@ -0,0 +1,31 @@
|
||||
boolean
|
||||
byte
|
||||
char
|
||||
color
|
||||
double
|
||||
float
|
||||
int
|
||||
XML
|
||||
|
||||
Foobar
|
||||
Foo_bar_42
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["type", "boolean"],
|
||||
["type", "byte"],
|
||||
["type", "char"],
|
||||
["type", "color"],
|
||||
["type", "double"],
|
||||
["type", "float"],
|
||||
["type", "int"],
|
||||
["type", "XML"],
|
||||
|
||||
["type", "Foobar"],
|
||||
["type", "Foo_bar_42"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for types.
|
Reference in New Issue
Block a user