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
| /**
| * Generic language patterns
| *
| * @author Craig Campbell
| * @version 1.0.11
| */
| Rainbow.extend([
| {
| 'matches': {
| 1: [
| {
| 'name': 'keyword.operator',
| 'pattern': /\=|\+/g
| },
| {
| 'name': 'keyword.dot',
| 'pattern': /\./g
| }
| ],
| 2: {
| 'name': 'string',
| 'matches': {
| 'name': 'constant.character.escape',
| 'pattern': /\\('|"){1}/g
| }
| }
| },
| 'pattern': /(\(|\s|\[|\=|:|\+|\.)(('|")([^\\\1]|\\.)*?(\3))/gm
| },
| {
| 'name': 'comment',
| 'pattern': /\/\*[\s\S]*?\*\/|(\/\/|\#)[\s\S]*?$/gm
| },
| {
| 'name': 'constant.numeric',
| 'pattern': /\b(\d+(\.\d+)?(e(\+|\-)?\d+)?(f|d)?|0x[\da-f]+)\b/gi
| },
| {
| 'matches': {
| 1: 'keyword'
| },
| 'pattern': /\b(and|array|as|b(ool(ean)?|reak)|c(ase|atch|har|lass|on(st|tinue))|d(ef|elete|o(uble)?)|e(cho|lse(if)?|xit|xtends|xcept)|f(inally|loat|or(each)?|unction)|global|if|import|int(eger)?|long|new|object|or|pr(int|ivate|otected)|public|return|self|st(ring|ruct|atic)|switch|th(en|is|row)|try|(un)?signed|var|void|while)(?=\(|\b)/gi
| },
| {
| 'name': 'constant.language',
| 'pattern': /true|false|null/g
| },
| {
| 'name': 'keyword.operator',
| 'pattern': /\+|\!|\-|&(gt|lt|amp);|\||\*|\=/g
| },
| {
| 'matches': {
| 1: 'function.call'
| },
| 'pattern': /(\w+?)(?=\()/g
| },
| {
| 'matches': {
| 1: 'storage.function',
| 2: 'entity.name.function'
| },
| 'pattern': /(function)\s(.*?)(?=\()/g
| }
| ]);
|
|