update components

This commit is contained in:
Luke Pulverenti 2016-02-02 21:12:02 -05:00
parent 2a4b879c21
commit 63664e6c1c
1155 changed files with 62261 additions and 84 deletions

View file

@ -0,0 +1,13 @@
#[test]
#![warn(unstable)]
----------------------------------------------------
[
["attribute", "#[test]"],
["attribute", "#![warn(unstable)]"]
]
----------------------------------------------------
Checks for attributes.

View file

@ -0,0 +1,30 @@
|x: int, y: int| -> int {}
|| {}
----------------------------------------------------
[
["closure-params", [
["punctuation", "|"],
"x",
["punctuation", ":"],
" int",
["punctuation", ","],
" y",
["punctuation", ":"],
" int",
["punctuation", "|"]
]],
["punctuation", "->"],
" int ", ["punctuation", "{"], ["punctuation", "}"],
["closure-params", [
["punctuation", "|"],
["punctuation", "|"]
]],
["punctuation", "{"], ["punctuation", "}"]
]
----------------------------------------------------
Checks for closure params.

View file

@ -0,0 +1,18 @@
//
// foobar
/**/
/* foo
bar */
----------------------------------------------------
[
["comment", "//"],
["comment", "// foobar"],
["comment", "/**/"],
["comment", "/* foo\r\nbar */"]
]
----------------------------------------------------
Checks for comments.

View file

@ -0,0 +1,23 @@
foo (
foobar(
foo_bar_42(
foo! (
foobar![
foo_bar_42!(
----------------------------------------------------
[
["function", "foo"], ["punctuation", "("],
["function", "foobar"], ["punctuation", "("],
["function", "foo_bar_42"], ["punctuation", "("],
["function", "foo!"], ["punctuation", "("],
["function", "foobar!"], ["punctuation", "["],
["function", "foo_bar_42!"], ["punctuation", "("]
]
----------------------------------------------------
Checks for functions and macros.

View file

@ -0,0 +1,39 @@
abstract alignof as
be box break const
continue crate do
else enum extern
false final fn for
if impl in let loop
match mod move mut
offsetof once override
priv pub pure ref
return sizeof static
self struct super
true trait type typeof
unsafe unsized use
virtual where while
yield
----------------------------------------------------
[
["keyword", "abstract"], ["keyword", "alignof"], ["keyword", "as"],
["keyword", "be"], ["keyword", "box"], ["keyword", "break"], ["keyword", "const"],
["keyword", "continue"], ["keyword", "crate"], ["keyword", "do"],
["keyword", "else"], ["keyword", "enum"], ["keyword", "extern"],
["keyword", "false"], ["keyword", "final"], ["keyword", "fn"], ["keyword", "for"],
["keyword", "if"], ["keyword", "impl"], ["keyword", "in"], ["keyword", "let"], ["keyword", "loop"],
["keyword", "match"], ["keyword", "mod"], ["keyword", "move"], ["keyword", "mut"],
["keyword", "offsetof"], ["keyword", "once"], ["keyword", "override"],
["keyword", "priv"], ["keyword", "pub"], ["keyword", "pure"], ["keyword", "ref"],
["keyword", "return"], ["keyword", "sizeof"], ["keyword", "static"],
["keyword", "self"], ["keyword", "struct"], ["keyword", "super"],
["keyword", "true"], ["keyword", "trait"], ["keyword", "type"], ["keyword", "typeof"],
["keyword", "unsafe"], ["keyword", "unsized"], ["keyword", "use"],
["keyword", "virtual"], ["keyword", "where"], ["keyword", "while"],
["keyword", "yield"]
]
----------------------------------------------------
Checks for all keywords.

View file

@ -0,0 +1,15 @@
foo!
foo_bar!
foo_bar_42!
----------------------------------------------------
[
["macro-rules", "foo!"],
["macro-rules", "foo_bar!"],
["macro-rules", "foo_bar_42!"]
]
----------------------------------------------------
Checks for macro rules.

View file

@ -0,0 +1,47 @@
0xBad_Face
0o741_123
0b0000_1111
42_000
3.14_15_9
3e4
3.5E-8
4.6e+41
0xBad_Faceu8
0o741_123i8
0b0000_1111u16
42_000i16
3.14_15_9u32
3e4i32
3.5E-8u64
4.6e+41i64
4.2f32
4.2f64
----------------------------------------------------
[
["number", "0xBad_Face"],
["number", "0o741_123"],
["number", "0b0000_1111"],
["number", "42_000"],
["number", "3.14_15_9"],
["number", "3e4"],
["number", "3.5E-8"],
["number", "4.6e+41"],
["number", "0xBad_Faceu8"],
["number", "0o741_123i8"],
["number", "0b0000_1111u16"],
["number", "42_000i16"],
["number", "3.14_15_9u32"],
["number", "3e4i32"],
["number", "3.5E-8u64"],
["number", "4.6e+41i64"],
["number", "4.2f32"],
["number", "4.2f64"]
]
----------------------------------------------------
Checks for numbers.

View file

@ -0,0 +1,35 @@
+ +=
- -=
* *=
/ /=
% %=
! !=
^ ^=
= ==
& && &=
| || |=
< << <= <<=
> >> >= >>=
@
----------------------------------------------------
[
["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 all operators.

View file

@ -0,0 +1,43 @@
""
"fo\"obar"
''
'fo\'obar'
b""
b"fo\"obar"
b''
b'fo\'obar'
r#""#
r#"fo"obar"#
r###"foo#bar"###
br#""#
br#"fo"obar"#
br###"foo#bar"###
----------------------------------------------------
[
["string", "\"\""],
["string", "\"fo\\\"obar\""],
["string", "''"],
["string", "'fo\\'obar'"],
["string", "b\"\""],
["string", "b\"fo\\\"obar\""],
["string", "b''"],
["string", "b'fo\\'obar'"],
["string", "r#\"\"#"],
["string", "r#\"fo\"obar\"#"],
["string", "r###\"foo#bar\"###"],
["string", "br#\"\"#"],
["string", "br#\"fo\"obar\"#"],
["string", "br###\"foo#bar\"###"]
]
----------------------------------------------------
Checks for strings.