forked from rust-lang/rust-enhanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntax_test_rust.rs
1135 lines (1034 loc) · 40.1 KB
/
syntax_test_rust.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SYNTAX TEST "Packages/Rust Enhanced/RustEnhanced.sublime-syntax"
// Line comments
// <- comment.line.double-slash
// ^^^^^^^^^^^^^^ comment.line.double-slash
/// Line doc comments
// <- comment.line.documentation
// ^^^^^^^^^^^^^ comment.line.documentation
/*!
// <- comment.block.documentation
// <- comment.block.documentation
//^ comment.block.documentation
Block doc comments
// ^^^^^^^^^^^^^^^^ comment.block.documentation
/* Nested comments */
// ^^^^^^^^^^^^^^^^^^ comment.block.documentation comment.block
*/
let c = 'c';
// <- storage.type
// ^ keyword.operator
// ^^^ string.quoted.single
let b = b'c';
// <- storage.type
// ^ keyword.operator
// ^ storage.type
// ^^^ string.quoted.single
let s = "This is a string \x01_\u{007F}_\"_\'_\\_\r_\n_\t_\0";
// <- storage.type
// ^ keyword.operator
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ string.quoted.double
// ^^^^ constant.character.escape
// ^^^^^^^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
let r = r#"This is a raw string, no escapes! \x00 \0 \n"#;
// <- storage.type
// ^ keyword.operator
// ^ storage.type
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ string.quoted.double - constant.character.escape
let bytes = b"This won't escape unicode \u{0123}, but will do \x01_\"_\'_\\_\r_\n_\t_\0";
// <- storage.type
// ^ keyword.operator
// ^ storage.type
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ string.quoted.double
// ^^^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
// ^^ constant.character.escape
let raw_bytes = br#"This won't escape anything either \x01 \""#;
// <- storage.type
// ^ keyword.operator
// ^^ storage.type
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ string.quoted.double - constant.character.escape
0;
// <- constant.numeric.integer.decimal
1_000u32;
// <- constant.numeric.integer.decimal
// <- constant.numeric.integer.decimal
//^^^ constant.numeric.integer.decimal
// ^^^ storage.type - constant.numeric.integer.decimal
1i64;
// <- constant.numeric.integer.decimal
// <- storage.type - constant.numeric.integer.decimal
//^^ storage.type - constant.numeric.integer.decimal
0.2;
// <- constant.numeric.float
// <- constant.numeric.float
//^ constant.numeric.float
1_000.0_;
// <- constant.numeric.float
// <- constant.numeric.float
//^^^^^^ constant.numeric.float
1.0f32;
// <- constant.numeric.float
// <- constant.numeric.float
//^ constant.numeric.float
// ^^^ storage.type - constant.numeric.float
0.;
// <- constant.numeric.float
// <- constant.numeric.float
0f64;
// <- constant.numeric.float
// <- storage.type - constant.numeric.float
//^^ storage.type - constant.numeric.float
0x0;
// <- constant.numeric.integer.hexadecimal
// <- constant.numeric.integer.hexadecimal
//^ constant.numeric.integer.hexadecimal
0xfa;
// <- constant.numeric.integer.hexadecimal
// <- constant.numeric.integer.hexadecimal
//^^ constant.numeric.integer.hexadecimal
0xFA_01i32;
// <- constant.numeric.integer.hexadecimal
// <- constant.numeric.integer.hexadecimal
//^^^^^ constant.numeric.integer.hexadecimal
// ^^^ storage.type - constant.numeric.integer.hexadecimal
0b1;
// <- constant.numeric.integer.binary
// <- constant.numeric.integer.binary
//^ constant.numeric.integer.binary
0b0_1u8;
// <- constant.numeric.integer.binary
// <- constant.numeric.integer.binary
//^^^ constant.numeric.integer.binary
// ^^ storage.type - constant.numeric.integer.binary
0o0;
// <- constant.numeric.integer.octal
// <- constant.numeric.integer.octal
//^ constant.numeric.integer.octal
0o0000_0010u64;
// <- constant.numeric.integer.octal
// <- constant.numeric.integer.octal
//^^^^^^^^^ constant.numeric.integer.octal
// ^^^ storage.type - constant.numeric.integer.octal
extern crate foo;
// <- keyword.other
//^^^^ keyword.other
// ^ - keyword.other
// ^^^^^ keyword.other
mod trafile;
// <- storage.type.module
mod comment;
// <- storage.type.module
mod location;
pub use self::trafile::*;
// <- storage.modifier
// ^ keyword.other
// ^^^^^^^^^^^^^^^ meta.path
use std::fmt;
// <- keyword.other
// ^^^^^ meta.path
// ^^^ - meta.path
use foo::i32;
// ^^^^^ meta.path
// ^^^ - meta.path storage.type
use foo::Bar;
// ^^^^^ meta.path
use foo::{Baz, QUX, quux};
// ^^^^^ meta.path
// ^^^^^^^^^^^^^^^^ meta.block
// ^^^ constant.other
String my_var = format!("Hello {0}", "World");
// ^^^ support.type
// ^ keyword.operator
// ^^^^^^^ support.macro
// ^ punctuation.definition.group.begin
// ^^^^^^^^^^^^^^^^^^^^^^ meta.group
// ^^^^^^^^^^^ string.quoted.double
// ^^^ constant.other.placeholder
// ^ punctuation.definition.group.end
my_var = format!("Hello {name}, how are you?",
// ^ keyword.operator
// ^^^^^^^ support.macro
// ^ punctuation.definition.group.begin
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.group
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ string.quoted.double
// ^^^^^^ constant.other.placeholder
name="John");
// ^^^^^^^^^^^^^ meta.group
// ^ keyword.operator
// ^^^^^^ string.quoted.double
// ^ punctuation.definition.group.end
struct BasicStruct(i32);
// ^^^^^^^^^^^^^^^^^^^^ meta.struct
// <- storage.type.struct
//^^^^ storage.type.struct
// ^^^^^^^^^^^ entity.name.struct
// ^ punctuation.definition.group.begin
// ^^^ storage.type
// ^ punctuation.definition.group.end
#[derive(Debug)]
// <- meta.annotation.rust
//^^^^^^^^^^^^^^ meta.annotation.rust
struct PrintableStruct(Box<i32>);
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.struct
// <- storage.type.struct
//^^^^ storage.type.struct
// ^^^^^^^^^^^^^^^ entity.name.struct
// ^ punctuation.definition.group.begin
// ^^^^^^^^ meta.generic
// ^ punctuation.definition.generic.begin
// ^^^ storage.type
// ^ punctuation.definition.generic.end
// ^ punctuation.definition.group.end
// fixes https://github.com/rust-lang/sublime-rust/issues/144
fn factory() -> Box<Fn(i32) -> i32> {
// <- storage.type.function
// ^^^^^^^ entity.name.function
// ^^^^^^^^^^^^^^ meta.generic
// ^^ storage.type
// ^^ storage.type
// ^^ source.rust meta.function.rust meta.function.return-type.rust
Box::new(|x| x + 1)
}
impl fmt::Display for PrintableStruct {
// <- meta.impl
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.impl
// <- storage.type.impl
//^^ storage.type.impl
// ^^^^^ meta.path
// ^^^ keyword.other
// ^^^^^^^^^^^^^^^ entity.name.impl
// ^ meta.block punctuation.definition.block.begin
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.impl
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.function
// ^^ storage.type.function
// ^^^ entity.name.function
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.function.parameters
// ^ punctuation.definition.parameters.begin
// ^ keyword.operator
// ^^^^ variable.parameter
// ^ variable.parameter
// ^ punctuation.separator
// ^ keyword.operator
// ^^^ storage.modifier
// ^^^^^ meta.path
// ^ punctuation.definition.parameters.end
// ^^ punctuation.separator
// ^^^^^ meta.path
// ^ meta.block punctuation.definition.block.begin
write!(f, "{}", self.0)
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.function
// ^^^^^^ support.macro
// ^^^^^^^^^^^^^^^^^ meta.group
// ^ punctuation.definition.group.begin
// ^^^^ string.quoted.double
// ^^ constant.other.placeholder
// ^ punctuation.definition.group.end
write!(get_writer(), "{}", "{}")
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.function
// ^^^^^^ support.macro
// ^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.group
// ^^^^^^^^^^ support.function
// ^^^^ string.quoted.double
// ^^ constant.other.placeholder
// ^^^^ string.quoted.double
// ^ punctuation.definition.group.begin
// ^ punctuation.definition.group.end
writeln!(w)
// ^^^^^^^^^^^^^^^^ meta.function
// ^^^^^^^^ support.macro
// ^^^ meta.group
// ^ punctuation.definition.group.begin
// ^ punctuation.definition.group.end
println!()
// ^^^^^^^^^^^^^^^ meta.function
// ^^^^^^^^ support.macro
// ^^ meta.group
// ^ punctuation.definition.group.begin
// ^ punctuation.definition.group.end
}
// ^^ meta.function meta.block
// ^ punctuation.definition.block.end
}
// <- meta.block punctuation.definition.block.end
let logical: bool = true;
// ^ punctuation.separator
// ^^^^ storage.type
// ^ keyword.operator
// ^^^^ constant.language
let mut mutable = 12;
// ^^^ storage.modifier
let ch = '∞';
// ^^^ string.quoted.single
let tuple = (1.0, 0i32, "Hello");
// ^^^^^^^^^^^^^^^^^^^^ meta.group
// ^ punctuation.definition.group.begin
// ^^^ constant.numeric.float
// ^ constant.numeric.integer.decimal
// ^^^ storage.type
// ^^^^^^^ string.quoted.double
// ^ punctuation.definition.group.end
// Looks like tuples use meta.group so we'll use that for tuple arguments too
// fixes https://github.com/rust-lang/sublime-rust/issues/164
let f = |(x, y)| { x + y };
// ^ punctuation.definition.parameters.begin
// ^^^^^^ meta.group
let xs: [i32; 5] = [1, 2, 3, 4, 5];
// ^ punctuation.separator
// ^^^^^^^^ meta.group
// ^ punctuation.definition.group.begin
// ^^^ storage.type
// ^ constant.numeric.integer.decimal
// ^ punctuation.definition.group.end
// ^^^^^^^^^^^^^^^ meta.group
// ^ punctuation.definition.group.begin
// ^ punctuation.definition.group.end
let xsl = &xs;
// ^ keyword.operator
type FnPointer = fn(i32) -> i32;
// ^^^^^^^^^ entity.name.type
// ^^ storage.type.function
// ^^^^^ meta.group
// ^^^ storage.type
// ^^ punctuation.separator
// ^^^ storage.type
type GenFnPointer = Bar<fn(i32) -> i32>;
// ^^^^^^^^^^^^ entity.name.type
// ^^^^^^^^^^^^^^^^^^^ meta.generic
// ^^ storage.type.function
// ^^^^^ meta.group
// ^^^ storage.type
// ^^ punctuation.separator
// ^^^ storage.type
// ^ - meta.generic
type GenFnPointer2 = Bar<extern "C" fn()>;
// ^^^^^^^^^^^^^ entity.name.type
// ^^^^^^^^^^^^^^^^^^^^ meta.generic
// ^^^^^^ keyword.other
// ^^^ string.quoted.double
// ^^ storage.type.function
// ^ - meta.generic
struct Nil;
// ^^^^^^^ meta.struct
// ^ - meta.struct
struct Pair(i32, i32);
// ^^^^^^^^^^^^^^^^^^ meta.struct
// ^^^ storage.type
// ^^^ storage.type
// ^ - meta.struct
enum OperatingSystem
// <- storage.type.enum
// ^^^^^^^^^^^^^^^^^ meta.enum
// ^^^^^^^^^^^^^^^ entity.name.enum
{
// <- meta.enum meta.block punctuation.definition.block.begin
Osx,
Windows,
Linux,
Bsd(String),
// ^^^^^^ support.type
Info { field: i32, value: str }
// ^ meta.block meta.block punctuation.definition.block.begin
// ^^^ storage.type
// ^^^ storage.type
// ^ meta.block meta.block punctuation.definition.block.end
}
// <- meta.enum meta.block punctuation.definition.block.end
const ZERO: u64 = 0;
// <- storage.type
// ^^^^ constant.other
// ^ punctuation.separator
// ^^^ storage.type
// ^ keyword.operator
// ^ constant.numeric.integer.decimal
static NAME: &'static str = "John";
// <- storage.type
// ^ keyword.operator
// ^^^^^^^ storage.modifier.lifetime
// ^^^ storage.type
// ^ keyword.operator
// ^^^^^^ string.quoted.double
let z = {
// ^ meta.block punctuation.definition.block.begin
2 * 5
// ^ constant.numeric.integer.decimal
// ^ keyword.operator
// ^ constant.numeric.integer.decimal
};
// <- meta.block punctuation.definition.block.end
fn my_func(x: i32)
// <- storage.type.function
// ^^^^^^^ entity.name.function
// ^^^^^^^^ meta.function.parameters
// ^ punctuation.definition.parameters.begin
// ^ variable.parameter
// ^ punctuation.separator
// ^ punctuation.definition.parameters.end
{
// <- meta.function meta.block punctuation.definition.block.begin
}
// <- meta.function meta.block punctuation.definition.block.end
let n = 5;
if n < 0 {
// ^ meta.block punctuation.definition.block.begin
// <- keyword.control
print!("{} is negative", n);
} else if n > 0 {
// <- meta.block punctuation.definition.block.end
// ^^^ keyword.control
// ^ meta.block punctuation.definition.block.begin
// ^^ keyword.control
print!("{0} is positive", n);
} else {
// <- meta.block punctuation.definition.block.end
// ^^^ keyword.control
// ^ meta.block punctuation.definition.block.begin
print!("{} is zero", n);
// ^^^^^^^^^^^^^^^^^^^^^^^^^ meta.block
}
// <- meta.block punctuation.definition.block.end
let big_n =
// ^ keyword.operator
if n < 10 && n > -10 {
// ^ meta.block punctuation.definition.block.begin
10 * n
} else {
// ^ meta.block punctuation.definition.block.end
// ^ meta.block punctuation.definition.block.begin
n / 2
};
// ^ meta.block punctuation.definition.block.end
'label_name: loop {
// ^^^^^^^^ entity.name.label
// ^ punctuation.separator
// ^^^^ keyword.control
// ^ meta.block punctuation.definition.block.begin
n += 1;
if n / 2 == 5 {
// ^ keyword.operator
continue;
// ^^^^^^^^ keyword.control
}
if n > 9 {
break;
// ^^^^^ keyword.control
}
}
while n < 50 {
//^^^ keyword.control
n = n * 2;
}
for i in 1..10 {
// <- keyword.control
// ^^ keyword.operator
// ^ constant.numeric.integer.decimal
// ^^ keyword.operator
// ^^ constant.numeric.integer.decimal
println!("I: {}", i);
// ^^^^^^^^^^^^^^^^^^^^^^ meta.block
}
// <- meta.block punctuation.definition.block.end
let o = match n {
// ^^^^^ keyword.control
1 => "one",
// ^ constant.numeric.integer.decimal
// ^^ keyword.operator
// ^^^^^ string.quoted.double
2 => "two",
// ^ constant.numeric.integer.decimal
// ^^ keyword.operator
// ^^^^^ string.quoted.double
3...5 => "a few",
// ^ constant.numeric.integer.decimal
// ^^^ keyword.operator
// ^ constant.numeric.integer.decimal
// ^^ keyword.operator
// ^^^^^^^ string.quoted.double
_ => "lots",
// ^ source.rust
// ^^ keyword.operator
};
let mut j = BasicStruct(10);
// ^^^ storage.modifier
// ^^ constant.numeric.integer.decimal
if let BasicStruct(i) = j {
// ^^^ storage.type
// ^ keyword.operator
// ^ meta.block punctuation.definition.block.begin
println!("Basic value: {}", i);
}
// <- meta.block punctuation.definition.block.end
while let BasicStruct(k) = j {
//^^^ keyword.control
// ^^^ storage.type
// ^ keyword.operator
// ^ meta.block punctuation.definition.block.begin
println!("Constructed example: {}", j)
j = BasicStruct(j + 1);
if k > 20 {
break;
//^^^ meta.block meta.block keyword.control
}
}
// <- meta.block punctuation.definition.block.end
fn foo<A>(i: u32, b: i64) -> u32 {
// <- storage.type.function
// ^^^ entity.name.function
// ^ punctuation.definition.generic.begin
// ^ punctuation.definition.generic.end
// ^^^^^^^^^^^^^^^^ meta.function.parameters
// ^^^ storage.type
// ^ meta.block punctuation.definition.block.begin
}
// <- meta.block punctuation.definition.block.end
// Guards
match n {
// <- keyword.control
a if n > 5 => println!("Big: {}", a),
// ^^ keyword.control
// ^ keyword.operator
// ^^ keyword.operator
// ^^^^^^^^ support.macro
b if n <= 5 => println!("Small: {}", b),
// ^^ keyword.control
// ^^ keyword.operator
// ^^ keyword.operator
// ^^^^^^^^ support.macro
// ^^ constant.other.placeholder
}
// Binding
match my_func() {
// ^^ keyword.control
// ^^^^^^^ support.function
// ^ meta.block punctuation.definition.block.begin
0 => println!("None"),
// ^ constant.numeric.integer.decimal
// ^^ keyword.operator
// ^^^^^^^^ support.macro
res @ 1...9 => println!("Digit: {}", res),
// ^ keyword.operator
// ^^^ keyword.operator
// ^^ constant.other.placeholder
_ => println!("Full number"),
// ^ source.rust
// ^^ keyword.operator
}
// <- meta.block punctuation.definition.block.end
fn my_other_func(e: OperatingSystem) -> u32 {
// ^^^^^^^^^^^^^ entity.name.function
// ^ variable.parameter
// ^ punctuation.separator
}
// Test highlighting/scope with struct field attributes
// https://github.com/rust-lang/sublime-rust/issues/120
pub struct Claim {
// ^^^^^^^^^ meta.struct
pub claim_id: String,
// ^^^ storage.modifier.rust
pub patient_id: String,
#[serde(skip_serializing_if="Option::is_none")]
// ^^^^^^^^^^^^^^^ string.quoted.double
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.annotation
pub referring: Option<String>,
#[serde(skip_serializing_if="Option::is_none")]
// ^^^^^ support.function
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.annotation
pub drug: Option<Vec<String>>,
#[serde(skip_serializing_if="Option::is_none")]
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.annotation
pub ndc: Option<Vec<String>>,
#[serde(skip_serializing_if="Option::is_none")]
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.annotation
pub rendering: Option<String>,
pub date: String,
}
struct Point
// ^^^^^^^^^ meta.struct
{
// <- meta.struct meta.block punctuation.definition.block.begin
x: i32,
// ^ variable.other.member
// ^ punctuation.separator
// ^^^ storage.type
y: i32
// ^ variable.other.member
// ^ punctuation.separator
// ^^^ storage.type
}
// <- meta.block punctuation.definition.block.end
impl Point
//^^^^^^^^ meta.impl
{
// <- meta.impl meta.block punctuation.definition.block.begin
fn new(x: i32, y: i32) -> Point
// <- storage.type.function
// ^^^ entity.name.function
{
// <- meta.function meta.block
Point {x: x, y: y}
}
fn double(&mut self) {
// ^^^^^^ entity.name.function
self.x *= 2;
self.y *= 2;
}
}
pub fn pub_function() -> bool
// <- storage.modifier
// ^^ storage.type.function
// ^^^^^^^^^^^^ entity.name.function
{
// <- meta.function
return true
}
let inferred_closure = |i, j: u32| i + 1;
// ^^^^^^^^^^^^^^^^ entity.name.function
// ^^^^^^^^^^^^^^^^^ meta.function.closure
// ^^^^^^^^^^^ meta.function.parameters
// ^ punctuation.definition.parameters.begin
// ^ variable.parameter
// ^ variable.parameter
// ^ punctuation.separator
// ^^^ storage.type
// ^ punctuation.definition.parameters.end
let closure = || -> i32 { | | 1 + 2 };
// ^^^^^^^ entity.name.function
// ^^^^^^^^^^^^^^^^^^^^^^^ meta.function.closure
// ^^ meta.function.parameters
// ^ punctuation.definition.parameters.begin
// ^ punctuation.definition.parameters.end
// ^^^ storage.type
// ^^^^^^^^^^^^^ meta.block
// ^ meta.block punctuation.definition.block.begin
// ^ constant.numeric.integer.decimal
// ^ constant.numeric.integer.decimal
// ^ meta.block punctuation.definition.block.end
let c = a | b;
// ^ keyword.operator
call_func(|c| 1 + 2 + c);
// ^^^^^^^^^^^^^ meta.function.closure
// ^^^ meta.function.parameters
macro_rules! print_result {
($expr:expr) => (
println!("{:?} = {:?}", stringify!($expr), $expr)
)
}
pub fn from_buf_reader<T>(s: io::BufReader<T>) -> Result<isize, &'static str>
// ^ keyword.operator
where T: io::Read
// ^ keyword.other
{
macro_rules! eat_numbers {
($count:expr, $msg:expr) => {{
// ^ meta.function meta.block meta.macro meta.block meta.block punctuation.definition.block.begin
// ^ meta.function meta.block meta.macro meta.block meta.block meta.block punctuation.definition.block.begin
let parse_err = concat!("Err parsing value in ", $msg);
try!{ eat_numbers(&mut lines, $count, parse_err, missing_err, too_many) }
// ^^^^ support.macro
// ^ meta.function meta.block meta.macro meta.block meta.block meta.block meta.block punctuation.definition.block.begin
}}
};
// <- meta.function meta.block - meta.macro
let mut starts_stops = eat_numbers!(relief_count_total * 2, "starts and stops");
let starts = starts_stops.split_off(relief_count_total);
let stops = starts_stops;
unimplemented!();
}
pub mod my_mod {
//^^^^^^^^^^^^^^ meta.module
// <- storage.modifier
// ^^^ storage.type.module
// ^^^^^^ entity.name.module
// ^ meta.block punctuation.definition.block.begin
}
// <- meta.module meta.block punctuation.definition.block.end
struct Val (f64,);
struct GenVal<T>(T,);
// ^^^^^^^^^ meta.generic
// ^^^^^^ entity.name.struct
// ^ punctuation.definition.generic.begin - entity.name.struct
// ^ punctuation.definition.generic.end
// impl of Val
impl Val {
fn value(&self) -> &'a f64 { &self.0 }
// ^ keyword.operator
// ^^ storage.modifier.lifetime
}
// impl of GenVal for a generic type `T`
impl <'a, T> GenVal<T> {
// ^ punctuation.definition.generic.begin
// ^^ storage.modifier.lifetime
// ^ punctuation.definition.generic.end
// ^^^^^^ entity.name.impl
// ^^^ - entity.name.impl
// ^ punctuation.definition.generic.begin
// ^ punctuation.definition.generic.end
fn value(&self) -> &T { &self.0 }
// ^ keyword.operator
// ^ keyword.operator
}
fn print_debug<T: Debug> (t: &T) {
// ^^^^^^^^^^^ entity.name.function
// ^ punctuation.definition.generic.begin - entity.name.function
// ^ punctuation.separator
// ^ punctuation.definition.generic.end
// ^ variable.parameter
// ^ keyword.operator
println!("{:?}", t);
// ^^^^ constant.other.placeholder
}
impl<'a, T: MyTrait + OtherTrait> PrintInOption for T where
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.impl
// ^^ storage.modifier.lifetime
// ^ punctuation.separator
// ^ keyword.operator
// ^^^ keyword.other
// ^ entity.name.impl
// ^^^^^ meta.where keyword.other
Option<T>: Debug {
//^^^^^^^^^^^^^^^^^^^^ meta.impl
fn print_in_option(self) {
// ^^^^^^^^^^^^^^^ entity.name.function
println!("{:?}", Some(self));
}
}
pub trait Animal {
// <- storage.modifier
//^^^^^^^^^^^^^^^^ meta.trait
// ^ meta.block punctuation.definition.block.begin
fn noise(quiet: bool) {
// Comment
}
}
// <- meta.trait meta.block punctuation.definition.block.end
fn collect_vec() {
let _: Vec<(usize, usize)> = (0..10).enumerate().collect::<Vec<_>>();
// ^^^^^^^^^^^^^^^^^^^ meta.generic
// ^ punctuation.definition.type.begin
// ^^^^^ storage.type
// ^^^^^ storage.type
// ^ punctuation.definition.type.end
// ^^^^^^^^ meta.generic
// ^^^^^^ meta.generic meta.generic
// ^ keyword.operator
let _: Vec<(usize, usize)> = vec!();
// ^^^^ support.macro
let _: Vec<(usize, usize)> = vec!{};
// ^^^^ support.macro
let _: Vec<(usize, usize)> = vec![];
// ^^^^ support.macro
}
macro_rules! forward_ref_binop [
// ^ meta.macro meta.group punctuation.definition.group.begin
(impl $imp:ident, $method:ident for $t:ty, $u:ty) => {
// ^^^^ variable.parameter
// ^^^^^ storage.type
// ^^^^^^^ variable.parameter
// ^^^^^ storage.type
// ^^ variable.parameter
// ^^ storage.type
// ^^ variable.parameter
// ^^ storage.type
// ^^ keyword.operator
// ^ meta.macro meta.group meta.block punctuation.definition.block.begin
impl<'a, 'b> $imp<&'a $u> for &'b $t {
// ^^^^ storage.type.impl
// ^^^^^^^^ meta.generic
// ^^ storage.modifier.lifetime
// ^^ storage.modifier.lifetime
// ^^^^ variable.other
// ^^^^^^^^ meta.generic
// ^ keyword.operator
// ^^ storage.modifier.lifetime
// ^^ variable.other
// ^^^ keyword.other
// ^ keyword.operator
// ^^ storage.modifier.lifetime
// ^^ variable.other
// ^ meta.macro meta.group meta.block meta.impl meta.block punctuation.definition.block.begin
type Output = <$t as $imp<$u>>::Output;
// ^^^^^^^^^^^^^^^^ meta.generic
// ^^ meta.path
#[inline]
// ^^^^^^^^^ meta.annotation.rust
fn $method(self, other: &'a $u) -> <$t as $imp<$u>>::Output {
// ^^ storage.type.function
// ^^^^^^^ variable.other
// ^^^^ variable.language
// ^ keyword.operator
// ^^ storage.modifier.lifetime
// ^^ variable.other
// ^^ punctuation.separator
// ^^^^^^^^^^^^^^^^ meta.generic
// ^^ meta.path
// ^ meta.macro meta.group meta.block meta.impl meta.block meta.block punctuation.definition.block.begin
$imp::$method(*self, *other)
// ^^^^ variable.other
// ^^^^^^^ variable.other
// ^ keyword.operator
// ^^^^ variable.language
// ^ keyword.operator
}
}
}
]
macro_rules! alternate_group (
// ^ meta.macro meta.group punctuation.definition.group.begin
($a:expr) => (
// ^^ variable.parameter
// ^^^^ storage.type
println!("Test {}!", $a)
)
)
macro_rules! kleene_star {
($($arg:tt)+) => (
// ^ meta.macro meta.block meta.group keyword.operator
// ^ meta.macro meta.block meta.group punctuation.definition.group.begin
// ^^^^ meta.macro meta.block meta.group variable.other
// ^^^^^ meta.macro meta.block meta.group
// ^ meta.macro meta.block meta.group punctuation.definition.group.end
// ^ meta.macro meta.block keyword.operator
println!($($arg));
),
($($arg:tt)*) => (
// ^^^^ meta.macro meta.block meta.group variable.other
// ^^^^^ meta.macro meta.block meta.group
// ^ meta.macro meta.block meta.group punctuation.definition.group.end
// ^ meta.macro meta.block keyword.operator
println!($($arg)*);
),
($($arg:tt);+) => (
// ^^^^ meta.macro meta.block meta.group variable.other
// ^^^^^^ meta.macro meta.block meta.group
// ^ meta.macro meta.block meta.group punctuation.definition.group.end
// ^ meta.macro meta.block keyword.operator
println!($($arg));
),
($($arg:tt),*) => (
// ^^^^ meta.macro meta.block meta.group variable.other
// ^^^^^^ meta.macro meta.block meta.group
// ^ meta.macro meta.block meta.group punctuation.definition.group.end
// ^ meta.macro meta.block keyword.operator
println!($($arg)*);
)
}
pub fn next_lex<T:PartialOrd>(/* block */data: &mut [T] // line {
// ^^^^^^^^^^^ source.rust meta.function.rust meta.function.parameters.rust comment.block.rust
// ^^^^^^^^^ source.rust meta.function.rust meta.function.parameters.rust comment.line.double-slash.rust
/* block2 */ data2: &mut [T] // line
// ^^^^^^^^^^^^ source.rust meta.function.rust meta.function.parameters.rust comment.block.rust
// ^^^^^^^ source.rust meta.function.rust meta.function.parameters.rust comment.line.double-slash.rust
) -> bool {
unimplemented!();
}
pub fn next_lex2</* block */T/* comments */:/* everywhere */
// ^^^^^^^^^^^ comment.block.rust
// ^^^^^^^^^^^^^^ comment.block.rust
// ^^^^^^^^^^^^^^^^ comment.block.rust
// Many comments
// ^^^^^^^^^^^^^^^^ comment.line.double-slash.rust
/* help */ PartialOrd // Possibly too many comments
// ^^^^^^^^^^ comment.block.rust
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line.double-slash.rust
> (
/* block2 */ data2: &mut [T] // line
// ^^^^^^^^^^^^ source.rust meta.function.rust meta.function.parameters.rust comment.block.rust
// ^^^^^^^ source.rust meta.function.rust meta.function.parameters.rust comment.line.double-slash.rust
) -> bool {
unimplemented!();
}
pub fn new<T>() -> Fibonacci<T>
where T: One + Zero,
// ^^^^^ keyword.other.rust
for <'a> &'a T: Add<Output = T>,
// ^^^ keyword.other.rust
// ^ punctuation.definition.generic.begin.rust
// ^^ storage.modifier.lifetime.rust
// ^ punctuation.definition.generic.end.rust
// ^ keyword.operator.rust
// ^^ storage.modifier.lifetime.rust
{
unimplemented!();
}
pub fn new<T>() -> Fibonacci<T>
where for <'a> &'a T: Add<Output = T>,
// ^^^^^ meta.where keyword.other.rust
// ^^^ keyword.other.rust
// ^ punctuation.definition.generic.begin.rust
// ^^ storage.modifier.lifetime.rust
// ^ punctuation.definition.generic.end.rust
// ^ keyword.operator.rust
// ^^ storage.modifier.lifetime.rust
{
unimplemented!();
}
impl<T> Fibonacci<T>
where for <'a> &'a T: Add<Output = T>,
// ^^^^^ keyword.other.rust
// ^^^ keyword.other.rust
// ^ punctuation.definition.generic.begin.rust
// ^^ storage.modifier.lifetime.rust
// ^ punctuation.definition.generic.end.rust
// ^ keyword.operator.rust
// ^^ storage.modifier.lifetime.rust
{
unimplemented!();
}
impl<T> Iterator for Fibonacci<T>
where T: Clone,
// ^^^^^ keyword.other.rust
for <'a> &'a T: Add<Output = T>,
// ^^^ keyword.other.rust
// ^ punctuation.definition.generic.begin.rust
// ^^ storage.modifier.lifetime.rust
// ^ punctuation.definition.generic.end.rust
// ^ keyword.operator.rust
// ^^ storage.modifier.lifetime.rust
{
unimplemented!();
}
pub const FOO: Option<[i32; 1]> = Some([1]);
// ^ punctuation.definition.group.begin.rust
// ^ punctuation.definition.group.end.rust
pub fn macro_tests() {
println!();
// ^^^^^^^^ support.macro.rust
println!("Example");
// ^^^^^^^^ support.macro.rust
// ^ punctuation.definition.group.begin
// ^^^^^^^^^ string.quoted.double.rust
// ^ punctuation.definition.group.end