mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
35 lines
564 B
Plaintext
35 lines
564 B
Plaintext
|
proc
|
||
|
return
|
||
|
class
|
||
|
error
|
||
|
eval
|
||
|
exit
|
||
|
for
|
||
|
foreach
|
||
|
if elseif else
|
||
|
switch
|
||
|
while
|
||
|
break
|
||
|
continue
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["builtin", "proc"],
|
||
|
["builtin", "return"],
|
||
|
["builtin", "class"],
|
||
|
["builtin", "error"],
|
||
|
["builtin", "eval"],
|
||
|
["builtin", "exit"],
|
||
|
["builtin", "for"],
|
||
|
["builtin", "foreach"],
|
||
|
["builtin", "if"], ["builtin", "elseif"], ["builtin", "else"],
|
||
|
["builtin", "switch"],
|
||
|
["builtin", "while"],
|
||
|
["builtin", "break"],
|
||
|
["builtin", "continue"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for builtins.
|