summaryrefslogtreecommitdiff
path: root/syntaxes/mars.json
blob: 213c1afa3279dd0200dcf6da13e9ce6e865878ed (plain)
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
{
    "$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
    "information_for_contributors": [
        "To modify the grammar, simply update the JSON run the extension. This file detects scope (e.g. is Moo active) and the individual files define the syntax of the scope"
    ],
    "name": "mars",
    "scopeName": "source.perl.package.mars",
    "injectionSelector": "L:meta.mars.perl -comment -string -text",
    "patterns": [
        {
            "include": "#mars"
        }
    ],
    "repository": {
        "mars": {
            "patterns": [
                {
                    "match": "\\b(attr)\\s+['\"](\\w+)['\"]\\s*\\;",
                    "captures": {
                        "1": {
                            "name": "keyword.other.attribute.mars.perl"
                        },
                        "2": {
                            "name": "variable.other.readwrite.mars.perl"
                        }
                    }
                },
                {
                    "match": "\\b(class|role|base|mixin|with|test|from)\\s+['\"]?(\\w+)['\"]?(?=[\\s;\\(\\{])",
                    "captures": {
                        "1": {
                            "name": "keyword.control.mars"
                        },
                        "2": {
                            "name": "entity.name.type.class.mars"
                        }
                    }
                },
                {
                    "match": "\\b(method)\\s+([\\w]+)\\b",
                    "captures": {
                        "1": {
                            "name": "storage.type.sub.perl"
                        },
                        "2": {
                            "name": "entity.name.function.perl"
                        }
                    }
                },
                {
                    "match": "\\b(accessor|builder|clearer|coerce|default|does|is|isa|predicate|required|trigger)\\s*(?==>)",
                    "name": "constant.language.has.key.mars.perl"  
                },
                {
                    "match": "\\b(true|false)\\b",
                    "name": "support.function.mars.perl"
                }
            ]
        }
    }
}