forked from Jatz/PeopleCodeTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPeopleCodeCallStack.tmLanguage
More file actions
122 lines (122 loc) · 2.63 KB
/
PeopleCodeCallStack.tmLanguage
File metadata and controls
122 lines (122 loc) · 2.63 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>PeopleSoft PeopleCode Call Stack</string>
<key>patterns</key>
<array>
<dict>
<key>include</key>
<string>#callstack</string>
</dict>
</array>
<key>repository</key>
<dict>
<key>callstack</key>
<dict>
<key>patterns</key>
<array>
<dict>
<key>include</key>
<string>#session</string>
</dict>
<dict>
<key>include</key>
<string>#methods</string>
</dict>
<dict>
<key>include</key>
<string>#events</string>
</dict>
</array>
</dict>
<key>events</key>
<dict>
<key>name</key>
<string>meta.event.pcode</string>
<key>patterns</key>
<array>
<dict>
<key>begin</key>
<string>(start|resume)\s+?(.*)</string>
<key>beginCaptures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>storage.modifier.pcode</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>entity.name.function.pcode</string>
</dict>
</dict>
<key>end</key>
<string>(\n)</string>
<key>name</key>
<string>meta.method.event.pcode</string>
</dict>
</array>
</dict>
<key>methods</key>
<dict>
<key>name</key>
<string>meta.method.pcode</string>
<key>patterns</key>
<array>
<dict>
<key>begin</key>
<string>(call (?:method|function|getter|setter|constructor))\s+?(.*)</string>
<key>beginCaptures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>storage.modifier.pcode</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>entity.name.function.pcode</string>
</dict>
</dict>
<key>end</key>
<string>(\n)</string>
<key>name</key>
<string>meta.method.identifier.pcode</string>
</dict>
</array>
</dict>
<key>session</key>
<dict>
<key>name</key>
<string>meta.method.pcode</string>
<key>patterns</key>
<array>
<dict>
<key>begin</key>
<string>(Session \d+)</string>
<key>beginCaptures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>comment.block.pcode</string>
</dict>
</dict>
<key>end</key>
<string>(:)</string>
<key>name</key>
<string>meta.method.session.pcode</string>
</dict>
</array>
</dict>
</dict>
<key>scopeName</key>
<string>source.peoplecode.psoftcallstack</string>
<key>uuid</key>
<string>cd1113f9-149f-4e18-9dec-c39a75a7c283</string>
</dict>
</plist>