remove unneeded libs

This commit is contained in:
Luke Pulverenti 2016-02-02 22:15:42 -05:00
parent 5aaaf08723
commit 59ea1c2f7d
1109 changed files with 0 additions and 58758 deletions

View file

@ -1,91 +0,0 @@
&allocated
&ascii
&clock
&collections
&cset
&current
&date
&dateline
&digits
&dump
&e
&error
&errornumber
&errortext
&errorvalue
&errout
&fail
&features
&file
&host
&input
&lcase
&letters
&level
&line
&main
&null
&output
&phi
&pi
&pos
&progname
&random
&regions
&source
&storage
&subject
&time
&trace
&ucase
&version
----------------------------------------------------
[
["builtin-keyword", "&allocated"],
["builtin-keyword", "&ascii"],
["builtin-keyword", "&clock"],
["builtin-keyword", "&collections"],
["builtin-keyword", "&cset"],
["builtin-keyword", "&current"],
["builtin-keyword", "&date"],
["builtin-keyword", "&dateline"],
["builtin-keyword", "&digits"],
["builtin-keyword", "&dump"],
["builtin-keyword", "&e"],
["builtin-keyword", "&error"],
["builtin-keyword", "&errornumber"],
["builtin-keyword", "&errortext"],
["builtin-keyword", "&errorvalue"],
["builtin-keyword", "&errout"],
["builtin-keyword", "&fail"],
["builtin-keyword", "&features"],
["builtin-keyword", "&file"],
["builtin-keyword", "&host"],
["builtin-keyword", "&input"],
["builtin-keyword", "&lcase"],
["builtin-keyword", "&letters"],
["builtin-keyword", "&level"],
["builtin-keyword", "&line"],
["builtin-keyword", "&main"],
["builtin-keyword", "&null"],
["builtin-keyword", "&output"],
["builtin-keyword", "&phi"],
["builtin-keyword", "&pi"],
["builtin-keyword", "&pos"],
["builtin-keyword", "&progname"],
["builtin-keyword", "&random"],
["builtin-keyword", "&regions"],
["builtin-keyword", "&source"],
["builtin-keyword", "&storage"],
["builtin-keyword", "&subject"],
["builtin-keyword", "&time"],
["builtin-keyword", "&trace"],
["builtin-keyword", "&ucase"],
["builtin-keyword", "&version"]
]
----------------------------------------------------
Checks for builtin keywords.

View file

@ -1,13 +0,0 @@
#
# Foobar
----------------------------------------------------
[
["comment", "#"],
["comment", "# Foobar"]
]
----------------------------------------------------
Checks for comments.

View file

@ -1,21 +0,0 @@
$include
$line
$define
$undef
$ifdef
$ifndef
----------------------------------------------------
[
["directive", "$include"],
["directive", "$line"],
["directive", "$define"],
["directive", "$undef"],
["directive", "$ifdef"],
["directive", "$ifndef"]
]
----------------------------------------------------
Checks for preprocessor directives.

View file

@ -1,15 +0,0 @@
foo()
Foobar_42{}
Foo_Bar ! []
----------------------------------------------------
[
["function", "foo"], ["punctuation", "("], ["punctuation", ")"],
["function", "Foobar_42"], ["punctuation", "{"], ["punctuation", "}"],
["function", "Foo_Bar"], ["operator", "!"], ["punctuation", "["], ["punctuation", "]"]
]
----------------------------------------------------
Checks for functions.

View file

@ -1,67 +0,0 @@
break
by
case
create
default
do
else
end
every
fail
global
if
initial
invocable
link
local
next
not
of
procedure
record
repeat
return
static
suspend
then
to
until
while
----------------------------------------------------
[
["keyword", "break"],
["keyword", "by"],
["keyword", "case"],
["keyword", "create"],
["keyword", "default"],
["keyword", "do"],
["keyword", "else"],
["keyword", "end"],
["keyword", "every"],
["keyword", "fail"],
["keyword", "global"],
["keyword", "if"],
["keyword", "initial"],
["keyword", "invocable"],
["keyword", "link"],
["keyword", "local"],
["keyword", "next"],
["keyword", "not"],
["keyword", "of"],
["keyword", "procedure"],
["keyword", "record"],
["keyword", "repeat"],
["keyword", "return"],
["keyword", "static"],
["keyword", "suspend"],
["keyword", "then"],
["keyword", "to"],
["keyword", "until"],
["keyword", "while"]
]
----------------------------------------------------
Checks for keywords.

View file

@ -1,33 +0,0 @@
0
.42
42
3.14159
2e8
3.2E-7
47E+19
2r11
8R751
16rbadface
36razerty
----------------------------------------------------
[
["number", "0"],
["number", ".42"],
["number", "42"],
["number", "3.14159"],
["number", "2e8"],
["number", "3.2E-7"],
["number", "47E+19"],
["number", "2r11"],
["number", "8R751"],
["number", "16rbadface"],
["number", "36razerty"]
]
----------------------------------------------------
Checks for numbers.

View file

@ -1,69 +0,0 @@
!
% %:=
& &:=
* *:= ** **:=
+ ++ +:= ++:=
- -:= -- --:=
.
/ /:=
:= :=:
< <- <-> <:=
<< <<:=
<<= <<=:=
<= <=:=
= =:=
== ==:=
=== ===:=
> >:=
>= >=:=
>> >>:=
>>= >>=:=
? ?:=
@ @:=
\
^ ^:=
| || ||:=
||| |||:=
~ ~= ~=:=
~== ~==:=
~=== ~===:=
: +: -:
----------------------------------------------------
[
["operator", "!"],
["operator", "%"], ["operator", "%:="],
["operator", "&"], ["operator", "&:="],
["operator", "*"], ["operator", "*:="], ["operator", "**"], ["operator", "**:="],
["operator", "+"], ["operator", "++"], ["operator", "+:="], ["operator", "++:="],
["operator", "-"], ["operator", "-:="], ["operator", "--"], ["operator", "--:="],
["operator", "."],
["operator", "/"], ["operator", "/:="],
["operator", ":="], ["operator", ":=:"],
["operator", "<"], ["operator", "<-"], ["operator", "<->"], ["operator", "<:="],
["operator", "<<"], ["operator", "<<:="],
["operator", "<<="], ["operator", "<<=:="],
["operator", "<="], ["operator", "<=:="],
["operator", "="], ["operator", "=:="],
["operator", "=="], ["operator", "==:="],
["operator", "==="], ["operator", "===:="],
["operator", ">"], ["operator", ">:="],
["operator", ">="], ["operator", ">=:="],
["operator", ">>"], ["operator", ">>:="],
["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.

View file

@ -1,22 +0,0 @@
""
"Fo\"obar"
"Foo_
bar_
baz"
''
'a\'zerty'
----------------------------------------------------
[
["string", "\"\""],
["string", "\"Fo\\\"obar\""],
["string", "\"Foo_\r\nbar_\r\nbaz\""],
["string", "''"],
["string", "'a\\'zerty'"]
]
----------------------------------------------------
Checks for strings and csets.