1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-02-02 21:12:02 -05:00
parent 003fd2ae7e
commit 35cc50701d
1155 changed files with 62261 additions and 84 deletions

View file

@ -0,0 +1,13 @@
True
False
----------------------------------------------------
[
["boolean", "True"],
["boolean", "False"]
]
----------------------------------------------------
Checks for booleans.

View file

@ -0,0 +1,15 @@
'a'
'%''
'%/123/'
----------------------------------------------------
[
["char", "'a'"],
["char", "'%''"],
["char", "'%/123/'"]
]
----------------------------------------------------
Checks for chars.

View file

@ -0,0 +1,13 @@
--
-- foo bar
----------------------------------------------------
[
["comment", "--"],
["comment", "-- foo bar"]
]
----------------------------------------------------
Checks for comments.

View file

@ -0,0 +1,39 @@
across agent alias all and
attached as assign attribute
check class convert create
Current debug deferred detachable
do else elseif end ensure
expanded export external
feature from frozen if
implies inherit inspect
invariant like local loop
not note obsolete old
once or Precursor redefine
rename require rescue Result
retry select separate some
then undefine until variant
Void when xor
----------------------------------------------------
[
["keyword", "across"], ["keyword", "agent"], ["keyword", "alias"], ["keyword", "all"], ["keyword", "and"],
["keyword", "attached"], ["keyword", "as"], ["keyword", "assign"], ["keyword", "attribute"],
["keyword", "check"], ["keyword", "class"], ["keyword", "convert"], ["keyword", "create"],
["keyword", "Current"], ["keyword", "debug"], ["keyword", "deferred"], ["keyword", "detachable"],
["keyword", "do"], ["keyword", "else"], ["keyword", "elseif"], ["keyword", "end"], ["keyword", "ensure"],
["keyword", "expanded"], ["keyword", "export"], ["keyword", "external"],
["keyword", "feature"], ["keyword", "from"], ["keyword", "frozen"], ["keyword", "if"],
["keyword", "implies"], ["keyword", "inherit"], ["keyword", "inspect"],
["keyword", "invariant"], ["keyword", "like"], ["keyword", "local"], ["keyword", "loop"],
["keyword", "not"], ["keyword", "note"], ["keyword", "obsolete"], ["keyword", "old"],
["keyword", "once"], ["keyword", "or"], ["keyword", "Precursor"], ["keyword", "redefine"],
["keyword", "rename"], ["keyword", "require"], ["keyword", "rescue"], ["keyword", "Result"],
["keyword", "retry"], ["keyword", "select"], ["keyword", "separate"], ["keyword", "some"],
["keyword", "then"], ["keyword", "undefine"], ["keyword", "until"], ["keyword", "variant"],
["keyword", "Void"], ["keyword", "when"], ["keyword", "xor"]
]
----------------------------------------------------
Checks for all keywords

View file

@ -0,0 +1,29 @@
0xbabe
0xBAD_A55
0c7654_1234
0b1111_0000_0101
42
42.
.42
1_845.123_456
3.14e+4
4_2.5_7e-1_0
----------------------------------------------------
[
["number", "0xbabe"],
["number", "0xBAD_A55"],
["number", "0c7654_1234"],
["number", "0b1111_0000_0101"],
["number", "42"],
["number", "42."],
["number", ".42"],
["number", "1_845.123_456"],
["number", "3.14e+4"],
["number", "4_2.5_7e-1_0"]
]
----------------------------------------------------
Checks for hexadecimal, octal, binary and decimal numbers.

View file

@ -0,0 +1,19 @@
\\ |..| .. //
/~ / /=
< <= > >=
+ - *
^ = ~
----------------------------------------------------
[
["operator", "\\\\"], ["operator", "|..|"], ["operator", ".."], ["operator", "//"],
["operator", "/~"], ["operator", "/"], ["operator", "/="],
["operator", "<"], ["operator", "<="], ["operator", ">"], ["operator", ">="],
["operator", "+"], ["operator", "-"], ["operator", "*"],
["operator", "^"], ["operator", "="], ["operator", "~"]
]
----------------------------------------------------
Checks for all operators

View file

@ -0,0 +1,30 @@
""
"fo%"o"
"foo%
%bar"
"[fo"o
bar]"
"!-[fo"o[]
bar]!-"
"{fo"o
bar}"
"*?{fo"o{}
bar}*?"
----------------------------------------------------
[
["string", "\"\""],
["string", "\"fo%\"o\""],
["string", "\"foo%\r\n%bar\""],
["string", "\"[fo\"o\r\nbar]\""],
["string", "\"!-[fo\"o[]\r\nbar]!-\""],
["string", "\"{fo\"o\r\nbar}\""],
["string", "\"*?{fo\"o{}\r\nbar}*?\""]
]
----------------------------------------------------
Checks for strings, multi-line strings, and aligned and non aligned verbatim strings.