summaryrefslogtreecommitdiff
path: root/syntaxes/moops.json
blob: ddf211567f08750054bbfcdbc4d433240a5e432e (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
62
63
64
65
66
67
68
69
{
    "$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": "moops",
    "scopeName": "source.perl.package.moops",
    "injectionSelector": "L:meta.moops.perl -comment -string -text",
    "patterns": [
        {
            "include": "#moops"
        }
    ],
    "repository": {
        "moops": {
            "patterns": [
                {
                    "match": "\\b(has)(?:([\\w]+))?\\b",
                    "captures": {
                        "1": {
                            "name": "keyword.other.attribute.moops.perl"
                        },
                        "2": {
                            "name": "variable.other.readwrite.moops.perl"
                        }
                    }
                },
                {
                    "match": "\\b(class|role)\\s+([\\w:]+)\\b",
                    "captures": {
                        "1": {
                            "name": "keyword.control.moops"
                        },
                        "2": {
                            "name": "entity.name.type.class.moops"
                        }
                    }
                },
                {
                    "match": "\\b(extends|with)\\b\\s+(?:([\\w::]+))?\\b",
                    "captures": {
                      "1": {
                        "name": "keyword.control.import.moops.perl"
                      },
                      "2": {
                        "name": "entity.name.class.moops.perl"
                      }
                    },
                    "name": "keyword.control.moops.perl"
                  },
                {
                    "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.moops.perl"  
                }
            ]
        }
    }
}