forked from dbp/sublime-rust
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathsyntax_test_enum.rs
68 lines (64 loc) · 2.26 KB
/
syntax_test_enum.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// SYNTAX TEST "Packages/Rust Enhanced/RustEnhanced.sublime-syntax"
enum OperatingSystem
// <- storage.type.enum
// ^^^^^^^^^^^^^^^^^ meta.enum
// ^^^^^^^^^^^^^^^ entity.name.enum
{
// <- meta.block meta.enum punctuation.section.block.begin
Osx,
// ^^^ meta.enum storage.type.source
Windows,
Linux,
Bsd(String),
// ^^^^^^ support.type
Info { field: i32, value: str }
// ^ punctuation.section.block.begin
// ^^^ storage.type
// ^^^ storage.type
// ^ meta.block punctuation.section.block.end
}
// <- meta.block meta.enum punctuation.section.block.end
let q = Message::Quit;
// ^^^^^^^ storage.type.source
// ^^ meta.path
// ^^^^ storage.type.source
// ^ punctuation.terminator
let w = Message::WriteString("Some string".to_string());
// ^^^^^^^^^^^ storage.type.source
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.group
// ^^^^^^^^^^^^^ string.quoted.double
// ^^^^^^^^^ variable.function
let m = Message::Move { x: 50, y: 200 };
// ^^^^^^^^^^^^^^^^^ meta.block
// ^^ constant.numeric.integer.decimal
// ^^^ constant.numeric.integer.decimal
enum Discriminant {
A = 1,
// ^ meta.enum constant.other
// ^ meta.enum constant.numeric.integer.decimal
V1 = 0xABC,
// ^^ meta.enum constant.other
// ^^^^^ meta.enum constant.numeric.integer.hexadecimal
V2,
// ^^ meta.enum constant.other
SomeValue = 123,
// ^^^^^^^^^ meta.enum storage.type.source
// ^^^ meta.enum constant.numeric.integer.decimal
V3 = (1<<4),
// ^^ meta.enum constant.other
// ^^^^^^ meta.enum meta.group
// ^ constant.numeric.integer.decimal
// ^^ keyword.operator.bitwise
// ^ constant.numeric.integer.decimal
lowercase,
// ^^^^^^^^^^^ meta.enum
}
// Enum type parameters.
enum E<'asdf> {}
// ^^^^^^^ meta.enum meta.generic
// ^^^^^storage.modifier.lifetime
enum C<T> where T: Copy {}
// ^^^ meta.enum meta.generic
// ^^^^^^^^^^^^^ meta.enum meta.where
// ^^^^^ keyword.other
// ^^^^ support.type