mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
remove unneeded libs
This commit is contained in:
parent
5aaaf08723
commit
59ea1c2f7d
1109 changed files with 0 additions and 58758 deletions
|
@ -1,13 +0,0 @@
|
|||
#t
|
||||
#f
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["boolean", "#t"],
|
||||
["boolean", "#f"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for booleans.
|
|
@ -1,53 +0,0 @@
|
|||
(cons
|
||||
(car
|
||||
(cdr
|
||||
(null?
|
||||
(pair?
|
||||
(boolean?
|
||||
(eof-object?
|
||||
(char?
|
||||
(procedure?
|
||||
(number?
|
||||
(port?
|
||||
(string?
|
||||
(vector?
|
||||
(symbol?
|
||||
(bytevector?
|
||||
(list
|
||||
(call-with-current-continuation
|
||||
(call/cc
|
||||
(append
|
||||
(abs
|
||||
(apply
|
||||
(eval
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["punctuation", "("], ["builtin", "cons"],
|
||||
["punctuation", "("], ["builtin", "car"],
|
||||
["punctuation", "("], ["builtin", "cdr"],
|
||||
["punctuation", "("], ["builtin", "null?"],
|
||||
["punctuation", "("], ["builtin", "pair?"],
|
||||
["punctuation", "("], ["builtin", "boolean?"],
|
||||
["punctuation", "("], ["builtin", "eof-object?"],
|
||||
["punctuation", "("], ["builtin", "char?"],
|
||||
["punctuation", "("], ["builtin", "procedure?"],
|
||||
["punctuation", "("], ["builtin", "number?"],
|
||||
["punctuation", "("], ["builtin", "port?"],
|
||||
["punctuation", "("], ["builtin", "string?"],
|
||||
["punctuation", "("], ["builtin", "vector?"],
|
||||
["punctuation", "("], ["builtin", "symbol?"],
|
||||
["punctuation", "("], ["builtin", "bytevector?"],
|
||||
["punctuation", "("], ["builtin", "list"],
|
||||
["punctuation", "("], ["builtin", "call-with-current-continuation"],
|
||||
["punctuation", "("], ["builtin", "call/cc"],
|
||||
["punctuation", "("], ["builtin", "append"],
|
||||
["punctuation", "("], ["builtin", "abs"],
|
||||
["punctuation", "("], ["builtin", "apply"],
|
||||
["punctuation", "("], ["builtin", "eval"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for builtins.
|
|
@ -1,13 +0,0 @@
|
|||
;
|
||||
; foobar
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["comment", ";"],
|
||||
["comment", "; foobar"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for comments.
|
|
@ -1,17 +0,0 @@
|
|||
(fl= 1 2)
|
||||
(flmin 2 3)
|
||||
(exact? 2)
|
||||
(inexact->exact 3)
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["punctuation", "("], ["function", "fl="], ["number", "1"], ["number", "2"], ["punctuation", ")"],
|
||||
["punctuation", "("], ["function", "flmin"], ["number", "2"], ["number", "3"], ["punctuation", ")"],
|
||||
["punctuation", "("], ["function", "exact?"], ["number", "2"], ["punctuation", ")"],
|
||||
["punctuation", "("], ["function", "inexact->exact"], ["number", "3"], ["punctuation", ")"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for functions.
|
|
@ -1,57 +0,0 @@
|
|||
(define
|
||||
(define-syntax
|
||||
(define-library
|
||||
(define-values
|
||||
(case-lambda
|
||||
(lambda
|
||||
(let
|
||||
(let*
|
||||
(letrec
|
||||
(let-values
|
||||
(let*-values
|
||||
(letrec-values
|
||||
(else
|
||||
(if
|
||||
(cond
|
||||
(begin
|
||||
(delay
|
||||
(delay-force
|
||||
(parameterize
|
||||
(guard
|
||||
(set!
|
||||
(quasi-quote
|
||||
(quote
|
||||
(syntax-rules
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["punctuation", "("], ["keyword", "define"],
|
||||
["punctuation", "("], ["keyword", "define-syntax"],
|
||||
["punctuation", "("], ["keyword", "define-library"],
|
||||
["punctuation", "("], ["keyword", "define-values"],
|
||||
["punctuation", "("], ["keyword", "case-lambda"],
|
||||
["punctuation", "("], ["keyword", "lambda"],
|
||||
["punctuation", "("], ["keyword", "let"],
|
||||
["punctuation", "("], ["keyword", "let*"],
|
||||
["punctuation", "("], ["keyword", "letrec"],
|
||||
["punctuation", "("], ["keyword", "let-values"],
|
||||
["punctuation", "("], ["keyword", "let*-values"],
|
||||
["punctuation", "("], ["keyword", "letrec-values"],
|
||||
["punctuation", "("], ["keyword", "else"],
|
||||
["punctuation", "("], ["keyword", "if"],
|
||||
["punctuation", "("], ["keyword", "cond"],
|
||||
["punctuation", "("], ["keyword", "begin"],
|
||||
["punctuation", "("], ["keyword", "delay"],
|
||||
["punctuation", "("], ["keyword", "delay-force"],
|
||||
["punctuation", "("], ["keyword", "parameterize"],
|
||||
["punctuation", "("], ["keyword", "guard"],
|
||||
["punctuation", "("], ["keyword", "set!"],
|
||||
["punctuation", "("], ["keyword", "quasi-quote"],
|
||||
["punctuation", "("], ["keyword", "quote"],
|
||||
["punctuation", "("], ["keyword", "syntax-rules"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for keywords.
|
|
@ -1,19 +0,0 @@
|
|||
(foo 42)
|
||||
(foo 3.14159)
|
||||
(foo 3+4i)
|
||||
(foo 2.5+0.0i)
|
||||
(foo 3+0i)
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["punctuation", "("], ["function", "foo"], ["number", "42"], ["punctuation", ")"],
|
||||
["punctuation", "("], ["function", "foo"], ["number", "3.14159"], ["punctuation", ")"],
|
||||
["punctuation", "("], ["function", "foo"], ["number", "3+4i"], ["punctuation", ")"],
|
||||
["punctuation", "("], ["function", "foo"], ["number", "2.5+0.0i"], ["punctuation", ")"],
|
||||
["punctuation", "("], ["function", "foo"], ["number", "3+0i"], ["punctuation", ")"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for numbers and complex numbers.
|
|
@ -1,31 +0,0 @@
|
|||
(+
|
||||
(-
|
||||
(*
|
||||
(/
|
||||
(%
|
||||
(<
|
||||
(<=
|
||||
(>
|
||||
(>=
|
||||
(=
|
||||
(=>
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["punctuation", "("], ["operator", "+"],
|
||||
["punctuation", "("], ["operator", "-"],
|
||||
["punctuation", "("], ["operator", "*"],
|
||||
["punctuation", "("], ["operator", "/"],
|
||||
["punctuation", "("], ["operator", "%"],
|
||||
["punctuation", "("], ["operator", "<"],
|
||||
["punctuation", "("], ["operator", "<="],
|
||||
["punctuation", "("], ["operator", ">"],
|
||||
["punctuation", "("], ["operator", ">="],
|
||||
["punctuation", "("], ["operator", "="],
|
||||
["punctuation", "("], ["operator", "=>"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for operators.
|
|
@ -1,15 +0,0 @@
|
|||
""
|
||||
"fo\"obar"
|
||||
'turkey
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["string", "\"\""],
|
||||
["string", "\"fo\\\"obar\""],
|
||||
["string", "'turkey"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for strings and symbols.
|
Loading…
Add table
Add a link
Reference in a new issue