Skip to content

Commit de21eb6

Browse files
Added support for AL (#2300)
1 parent ac297ba commit de21eb6

15 files changed

+738
-2
lines changed

components.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components.json

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@
9191
"title": "Ada",
9292
"owner": "Lucretia"
9393
},
94+
"al": {
95+
"title": "AL",
96+
"owner": "RunDevelopment"
97+
},
9498
"antlr4": {
9599
"title": "ANTLR4",
96100
"alias": "g4",

components/prism-al.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// based on https://github.com/microsoft/AL/blob/master/grammar/alsyntax.tmlanguage
2+
3+
Prism.languages.al = {
4+
'comment': /\/\/.*|\/\*[\s\S]*?\*\//,
5+
'string': {
6+
pattern: /'(?:''|[^'\r\n])*'(?!')|"(?:""|[^"\r\n])*"(?!")/,
7+
greedy: true
8+
},
9+
'function': {
10+
pattern: /(\b(?:event|procedure|trigger)\s+|(?:^|[^.])\.\s*)[a-z_]\w*(?=\s*\()/i,
11+
lookbehind: true
12+
},
13+
'keyword': [
14+
// keywords
15+
/\b(?:array|asserterror|begin|break|case|do|downto|else|end|event|exit|for|foreach|function|if|implements|in|indataset|interface|internal|local|of|procedure|program|protected|repeat|runonclient|securityfiltering|suppressdispose|temporary|then|to|trigger|until|var|while|with|withevents)\b/i,
16+
// objects and metadata that are used like keywords
17+
/\b(?:action|actions|addafter|addbefore|addfirst|addlast|area|assembly|chartpart|codeunit|column|controladdin|cuegroup|customizes|dataitem|dataset|dotnet|elements|enum|enumextension|extends|field|fieldattribute|fieldelement|fieldgroup|fieldgroups|fields|filter|fixed|grid|group|key|keys|label|labels|layout|modify|moveafter|movebefore|movefirst|movelast|page|pagecustomization|pageextension|part|profile|query|repeater|report|requestpage|schema|separator|systempart|table|tableelement|tableextension|textattribute|textelement|type|usercontrol|value|xmlport)\b/i
18+
],
19+
'number': /\b(?:0x[\da-f]+|(?:\d+\.?\d*|\.\d+)(?:e[+-]?\d+)?)(?:F|U(?:LL?)?|LL?)?\b/i,
20+
'boolean': /\b(?:false|true)\b/i,
21+
'variable': /\b(?:Curr(?:FieldNo|Page|Report)|RequestOptionsPage|x?Rec)\b/,
22+
'class-name': /\b(?:automation|biginteger|bigtext|blob|boolean|byte|char|clienttype|code|completiontriggererrorlevel|connectiontype|database|dataclassification|datascope|date|dateformula|datetime|decimal|defaultlayout|dialog|dictionary|dotnetassembly|dotnettypedeclaration|duration|errorinfo|errortype|executioncontext|executionmode|fieldclass|fieldref|fieldtype|file|filterpagebuilder|guid|httpclient|httpcontent|httpheaders|httprequestmessage|httpresponsemessage|instream|integer|joker|jsonarray|jsonobject|jsontoken|jsonvalue|keyref|list|moduledependencyinfo|moduleinfo|none|notification|notificationscope|objecttype|option|outstream|pageresult|record|recordid|recordref|reportformat|securityfilter|sessionsettings|tableconnectiontype|tablefilter|testaction|testfield|testfilterfield|testpage|testpermissions|testrequestpage|text|textbuilder|textconst|textencoding|time|transactionmodel|transactiontype|variant|verbosity|version|view|views|webserviceactioncontext|webserviceactionresultcode|xmlattribute|xmlattributecollection|xmlcdata|xmlcomment|xmldeclaration|xmldocument|xmldocumenttype|xmlelement|xmlnamespacemanager|xmlnametable|xmlnode|xmlnodelist|xmlprocessinginstruction|xmlreadoptions|xmltext|xmlwriteoptions)\b/i,
23+
'operator': /\.\.|:[=:]|[-+*/]=?|<>|[<>]=?|=|\b(?:and|div|mod|not|or|xor)\b/i,
24+
'punctuation': /[()\[\]{}:.;,]/
25+
};

components/prism-al.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/prism-al.html

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<h2>Full example</h2>
2+
<pre><code>// Source: https://github.com/microsoft/AL/blob/master/samples/ControlAddIn/al/Page/CustomerCardAddIn.al
3+
4+
pageextension 50300 CustomerCardAddIn extends "Customer Card"
5+
{
6+
layout
7+
{
8+
addafter(Blocked)
9+
{
10+
usercontrol(ControlName; TestAddIn)
11+
{
12+
ApplicationArea = All;
13+
14+
trigger Callback(i : integer; s: text; d : decimal; c : char)
15+
begin
16+
Message('Got from js: %1, %2, %3, %4', i, s, d, c);
17+
end;
18+
}
19+
}
20+
}
21+
22+
actions
23+
{
24+
addafter(Approve)
25+
{
26+
action(CallJavaScript)
27+
{
28+
ApplicationArea = All;
29+
30+
trigger OnAction();
31+
begin
32+
CurrPage.ControlName.CallJavaScript(5, 'text', 6.3, 'c');
33+
end;
34+
}
35+
36+
action(CallViaCodeunit)
37+
{
38+
ApplicationArea = All;
39+
40+
trigger OnAction();
41+
var c : Codeunit AddInHelpers;
42+
begin
43+
c.CallJavaScript(CurrPage.ControlName);
44+
end;
45+
}
46+
47+
action(CallStaleControlAddIn)
48+
{
49+
ApplicationArea = All;
50+
51+
trigger OnAction();
52+
var c : Codeunit AddInHelpersSingleton;
53+
begin
54+
c.CallStaleAddInMethod();
55+
Message('Probably nothing should happen...');
56+
end;
57+
}
58+
}
59+
}
60+
}</code></pre>

plugins/show-language/prism-show-language.js

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"js": "JavaScript",
2222
"abap": "ABAP",
2323
"abnf": "Augmented Backus–Naur form",
24+
"al": "AL",
2425
"antlr4": "ANTLR4",
2526
"g4": "ANTLR4",
2627
"apacheconf": "Apache Configuration",

plugins/show-language/prism-show-language.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
false
2+
true
3+
FALSE
4+
TRUE
5+
6+
----------------------------------------------------
7+
8+
[
9+
["boolean", "false"],
10+
["boolean", "true"],
11+
["boolean", "FALSE"],
12+
["boolean", "TRUE"]
13+
]
14+
15+
----------------------------------------------------
16+
17+
Checks for booleans.
+211
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,211 @@
1+
automation
2+
biginteger
3+
bigtext
4+
blob
5+
boolean
6+
byte
7+
char
8+
clienttype
9+
code
10+
completiontriggererrorlevel
11+
connectiontype
12+
database
13+
dataclassification
14+
datascope
15+
date
16+
dateformula
17+
datetime
18+
decimal
19+
defaultlayout
20+
dialog
21+
dictionary
22+
dotnetassembly
23+
dotnettypedeclaration
24+
duration
25+
errorinfo
26+
errortype
27+
executioncontext
28+
executionmode
29+
fieldclass
30+
fieldref
31+
fieldtype
32+
file
33+
filterpagebuilder
34+
guid
35+
httpclient
36+
httpcontent
37+
httpheaders
38+
httprequestmessage
39+
httpresponsemessage
40+
instream
41+
integer
42+
joker
43+
jsonarray
44+
jsonobject
45+
jsontoken
46+
jsonvalue
47+
keyref
48+
list
49+
moduledependencyinfo
50+
moduleinfo
51+
none
52+
notification
53+
notificationscope
54+
objecttype
55+
option
56+
outstream
57+
pageresult
58+
record
59+
recordid
60+
recordref
61+
reportformat
62+
securityfilter
63+
sessionsettings
64+
tableconnectiontype
65+
tablefilter
66+
testaction
67+
testfield
68+
testfilterfield
69+
testpage
70+
testpermissions
71+
testrequestpage
72+
text
73+
textbuilder
74+
textconst
75+
textencoding
76+
time
77+
transactionmodel
78+
transactiontype
79+
variant
80+
verbosity
81+
version
82+
view
83+
views
84+
webserviceactioncontext
85+
webserviceactionresultcode
86+
xmlattribute
87+
xmlattributecollection
88+
xmlcdata
89+
xmlcomment
90+
xmldeclaration
91+
xmldocument
92+
xmldocumenttype
93+
xmlelement
94+
xmlnamespacemanager
95+
xmlnametable
96+
xmlnode
97+
xmlnodelist
98+
xmlprocessinginstruction
99+
xmlreadoptions
100+
xmltext
101+
xmlwriteoptions
102+
103+
----------------------------------------------------
104+
105+
[
106+
["class-name", "automation"],
107+
["class-name", "biginteger"],
108+
["class-name", "bigtext"],
109+
["class-name", "blob"],
110+
["class-name", "boolean"],
111+
["class-name", "byte"],
112+
["class-name", "char"],
113+
["class-name", "clienttype"],
114+
["class-name", "code"],
115+
["class-name", "completiontriggererrorlevel"],
116+
["class-name", "connectiontype"],
117+
["class-name", "database"],
118+
["class-name", "dataclassification"],
119+
["class-name", "datascope"],
120+
["class-name", "date"],
121+
["class-name", "dateformula"],
122+
["class-name", "datetime"],
123+
["class-name", "decimal"],
124+
["class-name", "defaultlayout"],
125+
["class-name", "dialog"],
126+
["class-name", "dictionary"],
127+
["class-name", "dotnetassembly"],
128+
["class-name", "dotnettypedeclaration"],
129+
["class-name", "duration"],
130+
["class-name", "errorinfo"],
131+
["class-name", "errortype"],
132+
["class-name", "executioncontext"],
133+
["class-name", "executionmode"],
134+
["class-name", "fieldclass"],
135+
["class-name", "fieldref"],
136+
["class-name", "fieldtype"],
137+
["class-name", "file"],
138+
["class-name", "filterpagebuilder"],
139+
["class-name", "guid"],
140+
["class-name", "httpclient"],
141+
["class-name", "httpcontent"],
142+
["class-name", "httpheaders"],
143+
["class-name", "httprequestmessage"],
144+
["class-name", "httpresponsemessage"],
145+
["class-name", "instream"],
146+
["class-name", "integer"],
147+
["class-name", "joker"],
148+
["class-name", "jsonarray"],
149+
["class-name", "jsonobject"],
150+
["class-name", "jsontoken"],
151+
["class-name", "jsonvalue"],
152+
["class-name", "keyref"],
153+
["class-name", "list"],
154+
["class-name", "moduledependencyinfo"],
155+
["class-name", "moduleinfo"],
156+
["class-name", "none"],
157+
["class-name", "notification"],
158+
["class-name", "notificationscope"],
159+
["class-name", "objecttype"],
160+
["class-name", "option"],
161+
["class-name", "outstream"],
162+
["class-name", "pageresult"],
163+
["class-name", "record"],
164+
["class-name", "recordid"],
165+
["class-name", "recordref"],
166+
["class-name", "reportformat"],
167+
["class-name", "securityfilter"],
168+
["class-name", "sessionsettings"],
169+
["class-name", "tableconnectiontype"],
170+
["class-name", "tablefilter"],
171+
["class-name", "testaction"],
172+
["class-name", "testfield"],
173+
["class-name", "testfilterfield"],
174+
["class-name", "testpage"],
175+
["class-name", "testpermissions"],
176+
["class-name", "testrequestpage"],
177+
["class-name", "text"],
178+
["class-name", "textbuilder"],
179+
["class-name", "textconst"],
180+
["class-name", "textencoding"],
181+
["class-name", "time"],
182+
["class-name", "transactionmodel"],
183+
["class-name", "transactiontype"],
184+
["class-name", "variant"],
185+
["class-name", "verbosity"],
186+
["class-name", "version"],
187+
["class-name", "view"],
188+
["class-name", "views"],
189+
["class-name", "webserviceactioncontext"],
190+
["class-name", "webserviceactionresultcode"],
191+
["class-name", "xmlattribute"],
192+
["class-name", "xmlattributecollection"],
193+
["class-name", "xmlcdata"],
194+
["class-name", "xmlcomment"],
195+
["class-name", "xmldeclaration"],
196+
["class-name", "xmldocument"],
197+
["class-name", "xmldocumenttype"],
198+
["class-name", "xmlelement"],
199+
["class-name", "xmlnamespacemanager"],
200+
["class-name", "xmlnametable"],
201+
["class-name", "xmlnode"],
202+
["class-name", "xmlnodelist"],
203+
["class-name", "xmlprocessinginstruction"],
204+
["class-name", "xmlreadoptions"],
205+
["class-name", "xmltext"],
206+
["class-name", "xmlwriteoptions"]
207+
]
208+
209+
----------------------------------------------------
210+
211+
Checks for class names.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// comment
2+
/**/
3+
/*
4+
comment
5+
*/
6+
7+
----------------------------------------------------
8+
9+
[
10+
["comment", "// comment"],
11+
["comment", "/**/"],
12+
["comment", "/*\n comment\n*/"]
13+
]
14+
15+
----------------------------------------------------
16+
17+
Checks for comments.

0 commit comments

Comments
 (0)