-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathsyntax_test_scope.coffee
More file actions
950 lines (831 loc) · 38.3 KB
/
syntax_test_scope.coffee
File metadata and controls
950 lines (831 loc) · 38.3 KB
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
# SYNTAX TEST "CoffeeScript.sublime-syntax"
###[ COMMENTS ]###############################################################
# comment
# <- comment.line.number-sign.coffee punctuation.definition.comment.coffee
#^^^^^^^^^ comment.line.number-sign.coffee
### comment ###
# ^^^^^^^^^^^^^^^ comment.block.coffee
# ^^^ punctuation.definition.comment.coffee
# ^^^ punctuation.definition.comment.coffee
###
# ^^^^ comment.block.coffee
# ^^^ punctuation.definition.comment.coffee
class Name
# <- comment.block.coffee
# ^^^^^^^^^^ comment.block.coffee - keyword
@todo
# ^^^^^ comment.block.coffee variable.annotation.coffee
# ^ punctuation.definition.variable.coffee
###
# <- comment.block.coffee
#^^^^ comment.block.coffee
# ^^^ punctuation.definition.comment.coffee
###[ IMPORT / EXPORT ]########################################################
import {"foo"} from bar as baz
# <- keyword.control.import.coffee
#^^^^^ keyword.control.import.coffee
# ^^^^ keyword.control.import.coffee
# ^^ keyword.operator.assignment.as.coffee
export parentClass
# <- keyword.control.export.coffee
#^^^^^ keyword.control.export.coffee
###[ CLASSES ]################################################################
class extends parentClass
# <- meta.class.coffee keyword.declaration.class.coffee
#^^^^ meta.class.coffee
# ^ meta.class.identifier.coffee
# ^^^^^^^^^^^^^^^^^^^ meta.class.extends.coffee
#^^^^ keyword.declaration.class.coffee
# ^^^^^^^ storage.modifier.extends.coffee
# ^^^^^^^^^^^ entity.other.inherited-class.coffee
constructor: ->
return
class App.Router extends Snakeskin.Router
# <- meta.class.coffee keyword.declaration.class.coffee
#^^^^ meta.class.coffee
# ^^^^^^^^^^^^ meta.class.identifier.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^ meta.class.extends.coffee
#^^^^ keyword.declaration.class.coffee
# ^^^ support.class.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ entity.name.class.coffee
# ^^^^^^^ storage.modifier.extends.coffee
# ^^^^^^^^^ support.class.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ entity.other.inherited-class.coffee
class
# <- meta.class.coffee keyword.declaration.class.coffee
constructor: ->
# ^ meta.function.identifier.coffee entity.name.function.coffee
###[ FUNCTIONS ]###############################################################
name:
# ^^^^^ - meta.function - entity.name.function
name: ->
# ^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^^^^ meta.function.coffee
# ^ keyword.operator.assignment.coffee
# ^^ keyword.declaration.function.coffee
@name: ->
# ^^^^^^^^^ - meta.function meta.function
# ^ variable.language.this.coffee
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^^^^ meta.function.coffee
# ^ keyword.operator.assignment.coffee
# ^^ keyword.declaration.function.coffee
namespace.name: ->
# ^^^^^^^^^ meta.path.coffee variable.other.object.coffee
# ^ meta.path.coffee punctuation.accessor.dot.coffee
# ^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee meta.path.coffee entity.name.function.coffee
# ^ meta.function.coffee keyword.operator.assignment.coffee
# ^ meta.function.coffee - keyword
# ^^ meta.function.coffee keyword.declaration.function.coffee
# ^ - meta.function
name = ->
# ^^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^ meta.function.coffee - entity
# ^^^^ meta.function.coffee
# ^ keyword.operator.assignment.coffee
# ^^ keyword.declaration.function.coffee
namespace.name = ->
# ^^^^^^^^^ meta.path.coffee variable.other.object.coffee
# ^ meta.path.coffee punctuation.accessor.dot.coffee
# ^^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee meta.path.coffee entity.name.function.coffee
# ^ meta.function.coffee - keyword
# ^ meta.function.coffee keyword.operator.assignment.coffee
# ^ meta.function.coffee - keyword
# ^^ meta.function.coffee keyword.declaration.function.coffee
# ^ - meta.function
name: =>
# ^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^^^^ meta.function.coffee
# ^ keyword.operator.assignment.coffee
# ^^ keyword.declaration.function.coffee
namespace.name: =>
# ^^^^^^^^^ meta.path.coffee variable.other.object.coffee
# ^ meta.path.coffee punctuation.accessor.dot.coffee
# ^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee meta.path.coffee entity.name.function.coffee
# ^ meta.function.coffee keyword.operator.assignment.coffee
# ^ meta.function.coffee - keyword
# ^^ meta.function.coffee keyword.declaration.function.coffee
# ^ - meta.function
name = =>
# ^^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^ meta.function.coffee - entity
# ^^^^ meta.function.coffee
# ^ keyword.operator.assignment.coffee
# ^^ keyword.declaration.function.coffee
namespace.name = =>
# ^^^^^^^^^ meta.path.coffee variable.other.object.coffee
# ^ meta.path.coffee punctuation.accessor.dot.coffee
# ^^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee meta.path.coffee entity.name.function.coffee
# ^ meta.function.coffee - keyword
# ^ meta.function.coffee keyword.operator.assignment.coffee
# ^ meta.function.coffee - keyword
# ^^ meta.function.coffee keyword.declaration.function.coffee
# ^ - meta.function
name: () ->
# ^^^^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^^ meta.function.coffee
# ^^ meta.function.parameters.coffee
# ^^^ meta.function.coffee
# ^ keyword.operator.assignment.coffee
# ^ punctuation.section.parameters.begin.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
name: (foo, bar = undefined, baz="buuz", ...) ->
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - meta.function meta.function
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^^ meta.function.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.function.parameters.coffee
# ^^^ meta.function.coffee
# ^ keyword.operator.assignment.coffee
# ^ punctuation.section.parameters.begin.coffee
# ^^^ variable.parameter.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^ variable.parameter.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^^^^ constant.language.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^ variable.parameter.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^ meta.string.coffee string.quoted.double.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^ keyword.operator.variadic.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
name:
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^ meta.function.coffee keyword.operator.assignment.coffee
(foo, bar = undefined,
#^^^ meta.function.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^ meta.function.parameters.coffee
# ^ punctuation.section.parameters.begin.coffee
# ^^^ variable.parameter.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^ variable.parameter.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^^^^ constant.language.coffee
# ^ punctuation.separator.sequence.coffee
baz="buuz", ...) ->
# ^^^^^^^^^^^^^^^^^^ meta.function.parameters.coffee
# ^^^ meta.function.coffee
# ^^^ variable.parameter.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^ meta.string.coffee string.quoted.double.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^ keyword.operator.variadic.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
name: (
# ^^^^ meta.function.identifier.coffee entity.name.function.coffee
# ^^ meta.function.coffee
# ^^ meta.function.parameters.coffee
# ^ punctuation.section.parameters.begin.coffee
foo,
# ^^^ variable.parameter.coffee
# ^ punctuation.separator.sequence.coffee
bar = undefined,
# ^^^ variable.parameter.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^^^^ constant.language.coffee
baz="buuz"
# ^^^ variable.parameter.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^ meta.string.coffee string.quoted.double.coffee
) ->
#^^ meta.function.parameters.coffee
# <- meta.function.parameters.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
() ->
# ^^ meta.function.parameters.coffee
# ^^^ meta.function.coffee
# ^ punctuation.section.parameters.begin.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
() =>
# ^^ meta.function.parameters.coffee
# ^^^ meta.function.coffee
# ^ punctuation.section.parameters.begin.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
(foo) ->
# ^^^^^ meta.function.parameters.coffee - meta.function meta.function
# ^^^ meta.function.coffee
# ^ punctuation.section.parameters.begin.coffee
# ^^^ variable.parameter.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
(foo,
bar="baz") ->
# ^^^^^^^^^^^^ meta.function.parameters.coffee - meta.function meta.function
# ^^^ meta.function.coffee - meta.function meta.function
# ^^^ variable.parameter.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^ meta.string.coffee string.quoted.double.coffee
# ^ punctuation.section.parameters.end.coffee
# ^^ keyword.declaration.function.coffee
->
# ^^ keyword.declaration.function.coffee
(a : "group")
# ^^^^^^^^^^^^^ meta.group.coffee
# ^ punctuation.section.group.begin.coffee
# ^ variable.other.readwrite.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^^ meta.string.coffee string.quoted.double.coffee
# ^ punctuation.definition.string.begin.coffee
# ^ punctuation.definition.string.end.coffee
# ^ punctuation.section.group.end.coffee
geometry = new Class();
# ^^^^^^^^ variable.other.readwrite.coffee
# ^ keyword.operator.assignment.coffee
# ^^^ keyword.operator.object.new.coffee
# ^^^^^ support.class.coffee
try = new Class();
# ^^^ variable.other.readwrite.coffee
# ^ keyword.operator.assignment.coffee
# ^^^ keyword.operator.object.new.coffee
# ^^^^^ support.class.coffee
geometry: new Class();
# ^^^^^^^^ variable.other.readwrite.coffee
# ^ keyword.operator.assignment.coffee
# ^^^ keyword.operator.object.new.coffee
# ^^^^^ support.class.coffee
# ^ punctuation.section.group.begin.coffee
# ^ punctuation.section.group.end.coffee
try: new Class("Unknown sort: #{info.type}");
# ^^^ variable.other.readwrite.coffee
# ^ keyword.operator.assignment.coffee
# ^^^ keyword.operator.object.new.coffee
# ^^^^^ support.class.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.group.coffee
# ^ punctuation.section.group.begin.coffee
# ^^^^^^^^^^^^^^^ meta.string.coffee string.quoted.double.coffee - meta.interpolation
# ^^^^^^^^^^^^ meta.string.coffee meta.embedded.coffee source.coffee.embedded.source
# ^ meta.string.coffee string.quoted.double.coffee - meta.interpolation
# ^ punctuation.section.group.end.coffee
# ^ punctuation.terminator.statement.coffee
###[ LOOP STATEMENTS ]#########################################################
for a, b in @links
# ^^^ keyword.control.loop.for.coffee
# ^ variable.other.readwrite.coffee
# ^ punctuation.separator.sequence.coffee
# ^ variable.other.readwrite.coffee
# ^^ keyword.control.loop.in.coffee
# ^ variable.language.this.coffee
# ^^^^^ variable.other.member.coffee
@links = ($(a) for a in @$links unless a in filtered)
# ^ variable.language.this.coffee
# ^^^^^ variable.other.member.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.group.coffee
# ^ punctuation.section.group.begin.coffee
# ^ meta.function-call.identifier.coffee variable.function.coffee
# ^^^ meta.function-call.arguments.coffee
# ^ punctuation.section.group.begin.coffee
# ^ variable.other.readwrite.coffee
# ^ punctuation.section.group.end.coffee
# ^^^ keyword.control.loop.for.coffee
# ^ variable.other.readwrite.coffee
# ^^ keyword.control.loop.in.coffee
# ^ variable.language.this.coffee
# ^^^^^^ variable.other.member.coffee
# ^^^^^^ keyword.control.conditional.unless.coffee
# ^ variable.other.readwrite.coffee
# ^^ keyword.operator.word.coffee keyword.operator.comparison.coffee
# ^^^^^^^^ variable.other.readwrite.coffee
# ^ punctuation.section.group.end.coffee
for a, b of @links
# ^^^ keyword.control.loop.for.coffee
# ^ variable.other.readwrite.coffee
# ^ punctuation.separator.sequence.coffee
# ^ variable.other.readwrite.coffee
# ^^ keyword.control.loop.of.coffee
# ^ variable.language.this.coffee
# ^^^^^ variable.other.member.coffee
@links = ($(a) for a of @$links unless a of filtered)
# ^ variable.language.this.coffee
# ^^^^^ variable.other.member.coffee
# ^ keyword.operator.assignment.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.group.coffee
# ^ punctuation.section.group.begin.coffee
# ^ meta.function-call.identifier.coffee variable.function.coffee
# ^^^ meta.function-call.arguments.coffee
# ^ punctuation.section.group.begin.coffee
# ^ variable.other.readwrite.coffee
# ^ punctuation.section.group.end.coffee
# ^^^ keyword.control.loop.for.coffee
# ^ variable.other.readwrite.coffee
# ^^ keyword.control.loop.of.coffee
# ^ variable.language.this.coffee
# ^^^^^^ variable.other.member.coffee
# ^^^^^^ keyword.control.conditional.unless.coffee
# ^ variable.other.readwrite.coffee
# ^^ keyword.operator.word.coffee keyword.operator.comparison.coffee
# ^^^^^^^^ variable.other.readwrite.coffee
# ^ punctuation.section.group.end.coffee
###[ KEYWORDS ]################################################################
await .await _await await_ $await await$
# ^^^^^ keyword.control.flow.await.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
break .break _break break_ $break break$
# ^^^^^ keyword.control.flow.break.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
by .by _by $by
# ^^ keyword.control.loop.by.coffee
# ^^^^^^^^^^^^ - keyword
catch .catch _catch catch_ $catch catch$
# ^^^^^ keyword.control.exception.catch.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
continue .continue _continue continue_ $continue continue$
# ^^^^^^^^ keyword.control.flow.continue.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
debugger .debugger _debugger debugger_ $debugger debugger$
# ^^^^^^^^ keyword.control.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
do .do _do $do
# ^^ keyword.control.flow.do.coffee
# ^^^^^^^^^^^^ - keyword
else .else _else else_ $else else$
# ^^^^ keyword.control.conditional.else.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
finally .finally _finally finally_ $finally finally$
# ^^^^^^^ keyword.control.exception.finally.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
for .for _for for_ $for for$
# ^^^ keyword.control.loop.for.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
from .from _from from_ $from from$
# ^^^^ keyword.control.import.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
if .if _if $if
# ^^ keyword.control.conditional.if.coffee
# ^^^^^^^^^^^^ - keyword
import .import _import import_ $import import$
# ^^^^^^ keyword.control.import.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
loop .loop _loop loop_ $loop loop$
# ^^^^ keyword.control.loop.loop.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
return .return _return return_ $return return$
# ^^^^^^ keyword.control.flow.return.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
switch .switch _switch switch_ $switch switch$
# ^^^^^^ keyword.control.conditional.switch.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
then .then _then then_ $then then$
# ^^^^ keyword.control.conditional.then.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
throw .throw _throw throw_ $throw throw$
# ^^^^^ keyword.control.flow.throw.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
try .try _try try_ $try try$
# ^^^ keyword.control.exception.try.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
unless .unless _unless unless_ $unless unless$
# ^^^^^^ keyword.control.conditional.unless.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
until .until _until until_ $until until$
# ^^^^^ keyword.control.loop.until.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
when .when _when when_ $when when$
# ^^^^ keyword.control.conditional.when.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
while .while _while while_ $while while$
# ^^^^^ keyword.control.loop.while.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
yield .yield _yield yield_ $yield yield$
# ^^^^^ keyword.control.flow.yield.coffee
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - keyword
yield from
# ^^^^^^^^^^ keyword.control.flow.yield.coffee
###[ OPERATORS ]###############################################################
as
# ^^ keyword.operator.assignment.as.coffee
in is isnt is not of
# ^^ keyword.operator.comparison.coffee
# ^^ keyword.operator.comparison.coffee
# ^^^^ keyword.operator.comparison.coffee
# ^^^^^^ keyword.operator.comparison.coffee
# ^^ keyword.operator.comparison.coffee
and or not
# ^^^ keyword.operator.logical.coffee
# ^^ keyword.operator.logical.coffee
# ^^^ keyword.operator.logical.coffee
new
# ^^^ keyword.operator.object.new.coffee
new Class()
# ^^^ keyword.operator.object.new.coffee
# ^^^^^ support.class.coffee
new My.Class()
# ^^^ keyword.operator.object.new.coffee
# ^^ support.class.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^ support.class.coffee
delete
# ^^^^^^ keyword.operator.object.delete.coffee
delete obj
# ^^^^^^ keyword.operator.object.delete.coffee
# ^^^ variable.other.readwrite.coffee
obj = typeof obj
# ^^^ variable.other.readwrite.coffee
# ^^^^^^ keyword.operator.object.typeof.coffee
# ^^^ variable.other.readwrite.coffee
obj instanceof Bar
# ^^^ variable.other.readwrite.coffee
# ^^^^^^^^^^ keyword.operator.comparison.type.coffee
# ^^^ support.class.coffee
and= or= += -= *= /= %= &= |= ^= <<= >>= >>>=
# ^^^^ keyword.operator.assignment.augmented.coffee
# ^^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^ keyword.operator.assignment.augmented.coffee
# ^^^ keyword.operator.assignment.augmented.coffee
# ^^^ keyword.operator.assignment.augmented.coffee
# ^^^^ keyword.operator.assignment.augmented.coffee
=== == !== != <= >=
# ^^^ keyword.operator.comparison.coffee
# ^^ keyword.operator.comparison.coffee
# ^^^ keyword.operator.comparison.coffee
# ^^ keyword.operator.comparison.coffee
# ^^ keyword.operator.comparison.coffee
# ^^ keyword.operator.comparison.coffee
i++ i--
# ^^ keyword.operator.arithmetic.coffee
# ^^ keyword.operator.arithmetic.coffee
! ? && ||
# ^ keyword.operator.logical.coffee
# ^ keyword.operator.logical.coffee
# ^^ keyword.operator.logical.coffee
# ^^ keyword.operator.logical.coffee
^ ~ & |
# ^ keyword.operator.bitwise.coffee
# ^ keyword.operator.bitwise.coffee
# ^ keyword.operator.bitwise.coffee
# ^ keyword.operator.bitwise.coffee
+ - * / % ** // %%
# ^ keyword.operator.arithmetic.coffee
# ^ keyword.operator.arithmetic.coffee
# ^ keyword.operator.arithmetic.coffee
# ^ keyword.operator.arithmetic.coffee
# ^ keyword.operator.arithmetic.coffee
# ^^ keyword.operator.arithmetic.coffee
# ^^ keyword.operator.arithmetic.coffee
# ^^ keyword.operator.arithmetic.coffee
= :
# ^ keyword.operator.assignment.coffee
# ^ keyword.operator.assignment.coffee
...
# ^^^ keyword.operator.variadic.coffee
###[ BUILTIN FUNCTIONS ]#######################################################
console.log()
# ^^^^^^^ support.class.console.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ support.function.console.coffee
# ^ punctuation.section.group.begin.coffee
# ^ punctuation.section.group.end.coffee
Map
# ^^^ support.class.coffee
Object.create()
# ^^^^^^ support.class.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ support.function.static.object.coffee
# ^ punctuation.section.group.begin.coffee
# ^ punctuation.section.group.end.coffee
###[ USER FUNCTIONS ]##########################################################
func()
# ^^^^ meta.function-call.identifier.coffee variable.function.coffee
# ^^ meta.function-call.arguments.coffee
$func()
# ^^^^^ meta.function-call.identifier.coffee variable.function.coffee
# ^^ meta.function-call.arguments.coffee
$('')
# ^ meta.function-call.identifier.coffee variable.function.coffee
# ^^^^ meta.function-call.arguments.coffee
@name(@, obj.obj.)
# ^ variable.language.this.coffee
# ^^^^ meta.function-call.identifier.coffee variable.function.coffee
# ^^^^^^^^^^^^^ meta.function-call.arguments.coffee
# ^ punctuation.section.group.begin.coffee
# ^ variable.language.this.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^^^^^^ meta.path.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^ punctuation.section.group.end.coffee
@$('#notification')
# ^ variable.language.this.coffee
# ^ meta.function-call.identifier.coffee variable.function.coffee
# ^^^^^^^^^^^^^^^^^ meta.function-call.arguments.coffee
# ^ variable.function.coffee
# ^ punctuation.section.group.begin.coffee
# ^^^^^^^^^^^^^^^ meta.string.coffee string.quoted.single.coffee
# ^ punctuation.section.group.end.coffee
###[ OBJECT MEMBERS ]##########################################################
super.key
# ^^^^^^^^^ meta.path.coffee
# ^^^^^ variable.language.super.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ variable.other.member.coffee
# ^ - meta
this.member
# ^^^^^^^^^^^ meta.path.coffee
# ^^^^ variable.language.this.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ variable.other.member.coffee
# ^ - meta
this.obj.member
# ^^^^^^^^^^^^^^^ meta.path.coffee
# ^^^^ variable.language.this.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ variable.other.member.coffee
# ^ - meta
@member
# ^^^^^^^ meta.path.coffee
# ^ variable.language.this.coffee
# ^^^^^^ variable.other.member.coffee
# ^ - meta
@obj.member
# ^^^^ meta.path.coffee
# ^ variable.language.this.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ variable.other.member.coffee
# ^ - meta
@obj.obj.
# ^^^^^^^^^ meta.path.coffee
# ^ variable.language.this.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^ - meta
obj.Object
# ^^^^^^^^^^ meta.path.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ variable.other.member.coffee
obj.member
# ^^^^^^^^^^ meta.path.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ variable.other.member.coffee
obj.child.member
# ^^^^^^^^^^^^^^^^ meta.path.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ variable.other.member.coffee
obj.method(1+1, "foo")
# ^^^^^^^^^^ meta.path.coffee
# ^^^^^^ meta.function-call.identifier.coffee
# ^^^^^^^^^^^^ meta.function-call.arguments.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^ variable.function.coffee
# ^ punctuation.section.group.begin.coffee
# ^ meta.number.integer.decimal.coffee constant.numeric.value.coffee
# ^ keyword.operator.arithmetic.coffee
# ^ meta.number.integer.decimal.coffee constant.numeric.value.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^^^ meta.string.coffee string.quoted.double.coffee
# ^ punctuation.section.group.end.coffee
class: 1
# ^^^^^ variable.other.readwrite.coffee
# ^ keyword.operator.assignment.coffee
obj.class: 1
# ^^^^^^^^^ meta.path.coffee
# ^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^ variable.other.member.coffee
###[ LITERALS ]################################################################
Infinity NaN undefined .Infinity .NaN .undefined
# ^^^^^^^^ constant.language.infinity.coffee
# ^^^ constant.language.nan.coffee
# ^^^^^^^^^ constant.language.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^^^ variable.other.member.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ variable.other.member.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^^^^ variable.other.member.coffee
true on yes .true .on .yes
# ^^^^ constant.language.boolean.true.coffee
# ^^ constant.language.boolean.true.coffee
# ^^^ constant.language.boolean.true.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^ variable.other.member.coffee
# ^ punctuation.accessor.dot.coffee
# ^^ variable.other.member.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ variable.other.member.coffee
false off no .false .off .no
# ^^^^^ constant.language.boolean.false.coffee
# ^^^ constant.language.boolean.false.coffee
# ^^ constant.language.boolean.false.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^ variable.other.member.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^ variable.other.member.coffee
# ^ punctuation.accessor.dot.coffee
# ^^ variable.other.member.coffee
null _null .null
# ^^^^ constant.language.null.coffee
# ^^^^^ variable.other.readwrite.coffee
# ^^^^^ meta.path.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^ variable.other.member.coffee
0b1000111101
# ^^ meta.number.integer.binary.coffee constant.numeric.base.coffee
# ^^^^^^^^^^ meta.number.integer.binary.coffee constant.numeric.value.coffee
0o12340576
# ^^ meta.number.integer.octal.coffee constant.numeric.base.coffee
# ^^^^^^^^ meta.number.integer.octal.coffee constant.numeric.value.coffee
0x1234567890ABCDEF
# ^^ meta.number.integer.hexadecimal.coffee constant.numeric.base.coffee
# ^^^^^^^^^^^^^^^^ meta.number.integer.hexadecimal.coffee constant.numeric.value.coffee
10e5
# ^^^^ meta.number.float.decimal.coffee constant.numeric.value.coffee
10.e5
# ^^^^^ meta.number.float.decimal.coffee constant.numeric.value.coffee
# ^ punctuation.separator.decimal.coffee
10.23 .23
# ^^^^^ meta.number.float.decimal.coffee constant.numeric.value.coffee
# ^ punctuation.separator.decimal.coffee
# ^^^ meta.number.float.decimal.coffee constant.numeric.value.coffee
# ^ punctuation.separator.decimal.coffee
10.23e-5
# ^^^^^^^^ meta.number.float.decimal.coffee constant.numeric.value.coffee
# ^ punctuation.separator.decimal.coffee
52
# ^^ meta.number.integer.decimal.coffee constant.numeric.value.coffee
"foo \. \x28 bar\""
# ^^^^^^^^^^^^^^^^^^^ meta.string.coffee string.quoted.double.coffee
# ^ punctuation.definition.string.begin.coffee
# ^^ constant.character.escape.coffee
# ^^^^ constant.character.escape.coffee
# ^^ constant.character.escape.coffee
# ^ punctuation.definition.string.end.coffee
'foo \. \x28 bar\''
# ^^^^^^^^^^^^^^^^^^^ meta.string.coffee string.quoted.single.coffee
# ^ punctuation.definition.string.begin.coffee
# ^^ constant.character.escape.coffee
# ^^^^ constant.character.escape.coffee
# ^^ constant.character.escape.coffee
# ^ punctuation.definition.string.end.coffee
"""
#^ - meta.string - string
# ^^^ meta.string.heredoc.coffee string.quoted.double.coffee punctuation.definition.string.begin.coffee
"""
# <- meta.string.heredoc.coffee string.quoted.double.coffee
#^ meta.string.heredoc.coffee string.quoted.double.coffee
# ^^^ meta.string.heredoc.coffee string.quoted.double.coffee punctuation.definition.string.end.coffee
# ^ - meta.string - string
'''
#^ - meta.string - string
# ^^^ meta.string.heredoc.coffee string.quoted.single.coffee punctuation.definition.string.begin.coffee
'''
# <- meta.string.heredoc.coffee string.quoted.single.coffee
#^ meta.string.heredoc.coffee string.quoted.single.coffee
# ^^^ meta.string.heredoc.coffee string.quoted.single.coffee punctuation.definition.string.end.coffee
# ^ - meta.string - string
```
# ^^^ meta.string.heredoc.coffee string.quoted.script.coffee punctuation.definition.string.begin.coffee
# ^ meta.string.heredoc.coffee meta.embedded.coffee source.jsx.embedded.coffee - string
var i = `back ${tick} string`;
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.string.heredoc.coffee meta.embedded.coffee source.jsx.embedded.coffee - source.jsx source.jsx
# ^^^ keyword.declaration
# ^^^^^^ meta.string string.quoted.other.js
# ^^^^^^^ meta.string meta.interpolation.js
# ^^^^^^^ meta.string string.quoted.other.js
return (<h1>Hello {World}</h1>)
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.string.heredoc.coffee meta.embedded.coffee source.jsx.embedded.coffee - source.jsx source.jsx
# ^^^^^^^^^^^^^^^^^^^^^^ meta.group.js meta.jsx.js
# ^^^^ meta.tag
# ^^^^^ meta.tag
```
# <- meta.string.heredoc.coffee meta.embedded.coffee source.jsx.embedded.coffee - string
#^ meta.string.heredoc.coffee meta.embedded.coffee source.jsx.embedded.coffee - string
# ^^^ meta.string.heredoc.coffee string.quoted.script.coffee punctuation.definition.string.end.coffee
# ^ - meta.string - string
`
# ^ meta.string.coffee string.quoted.script.coffee punctuation.definition.string.begin.coffee
# ^ meta.string.coffee meta.embedded.coffee source.jsx.embedded.coffee - string
var i = 0;
# ^^^^^^^^^^^ meta.string.coffee meta.embedded.coffee source.jsx.embedded.coffee - source.jsx source.jsx
# ^^^ keyword.declaration
return (<h1>Hello {World}</h1>)
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.string.coffee meta.embedded.coffee source.jsx.embedded.coffee - source.jsx source.jsx
# ^^^^^^^^^^^^^^^^^^^^^^ meta.group.js meta.jsx.js
# ^^^^ meta.tag
# ^^^^^ meta.tag
`
# <- meta.string.coffee meta.embedded.coffee source.jsx.embedded.coffee - string
#^ meta.string.coffee meta.embedded.coffee source.jsx.embedded.coffee - string
# ^ meta.string.coffee string.quoted.script.coffee punctuation.definition.string.end.coffee
# ^ - meta.string - string
///
# <- - meta.string
#^ - meta.string
# ^^^ meta.string.heredoc.coffee punctuation.definition.string.begin.coffee
# ^ meta.string.heredoc.coffee string.regexp.coffee
\. #{var}
#^^^^^^^^^^^ meta.string.heredoc.coffee
# ^^ string.regexp.coffee constant.character.escape.coffee
# ^^^^^^ meta.embedded.coffee source.coffee.embedded.source
///
# <- meta.string.heredoc.coffee string.regexp.coffee
#^ meta.string.heredoc.coffee string.regexp.coffee
# ^^^ meta.string.heredoc.coffee punctuation.definition.string.end.coffee
/[0-9]bar/img
# ^^^^^^^^^^^^^ meta.string.regexp.coffee
# ^ punctuation.definition.string.begin.coffee
# ^^^^^^^^ string.regexp.coffee
# ^ punctuation.definition.string.end.coffee
# ^^^ constant.language.flags.coffee
.replace(/\\/g, "/")
# ^^^^^^^^^^^^ meta.function-call.arguments.coffee
# ^^^^^ meta.string.regexp.coffee
# ^ punctuation.definition.string.begin.coffee
# ^^ string.regexp.coffee
# ^ punctuation.definition.string.end.coffee
# ^ constant.language.flags.coffee
# ^ punctuation.separator.sequence.coffee
# ^^^ meta.string.coffee string.quoted.double.coffee
###[ VARIABLES ]###############################################################
[object.variable] = 0
# ^ punctuation.section.brackets.begin.coffee
# ^^^^^^ variable.other.object.coffee
# ^ punctuation.accessor.dot.coffee
# ^^^^^^^^ variable.other.member.coffee
# ^ punctuation.section.brackets.end.coffee
# ^ keyword.operator.assignment.coffee
# ^ meta.number.integer.decimal.coffee constant.numeric.value.coffee
@variable
# ^ variable.language.this.coffee
# ^^^^^^^^ variable.other.member.coffee
###[ JSX ]#####################################################################
<Component attrib="va{@lue}">
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.jsx.coffee meta.tag.coffee
# ^ punctuation.definition.tag.begin.coffee
# ^^^^^^^^^ entity.name.tag.component.coffee
# ^^^^^^^^^^^^^^^^^ meta.attribute-with-value.coffee
# ^^^^^^ entity.other.attribute-name.coffee
# ^ punctuation.separator.key-value.coffee
# ^^^ meta.string.coffee string.quoted.double.coffee
# ^^^^^^ meta.string.coffee meta.interpolation.coffee
# ^ punctuation.section.interpolation.begin.coffee
# ^^^^ source.coffee.embedded.jsx
# ^ variable.language.this.coffee
# ^^^ variable.other.member.coffee
# ^ punctuation.section.interpolation.end.coffee
# ^ meta.string.coffee string.quoted.double.coffee punctuation.definition.string.end.coffee
# ^ punctuation.definition.tag.end.coffee
<h1>Text {# comment}!</h1>
# ^^^^ meta.jsx.coffee meta.tag.coffee
# ^ punctuation.definition.tag.begin.coffee
# ^^ entity.name.tag.coffee
# ^ punctuation.definition.tag.end.coffee
# ^^^^^ meta.jsx.coffee - meta.interpolation
# ^^^^^^^^^^^ meta.jsx.coffee meta.interpolation.coffee comment.block.coffee
# ^^ punctuation.definition.comment.begin.coffee
# ^ punctuation.definition.comment.end.coffee
# ^ meta.jsx.coffee - meta.interpolation
# ^^^^^ meta.jsx.coffee meta.tag.coffee
# ^^ punctuation.definition.tag.begin.coffee
# ^^ entity.name.tag.coffee
# ^ punctuation.definition.tag.end.coffee
</Component>
# ^^^^^^^^^^^^ meta.jsx.coffee meta.tag.coffee
# ^^ punctuation.definition.tag.begin.coffee
# ^^^^^^^^^ entity.name.tag.component.coffee
# ^ punctuation.definition.tag.end.coffee
# ^ - meta.jsx - meta.tag
<EmailInput
{# THIS IS A GOOD COMMENT }
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.jsx.coffee meta.tag.coffee meta.attribute-with-value.coffee meta.interpolation.coffee comment.block.coffee
{...@props}
# ^^^^^^^^^^^ meta.jsx.coffee meta.tag.coffee meta.attribute-with-value.coffee meta.interpolation.coffee
/>
# ^^ meta.jsx.coffee meta.tag.coffee punctuation.definition.tag.end.coffee
# ^ - meta.jsx - meta.tag