Skip to content

Commit 5688f48

Browse files
authoredDec 10, 2021
Powerquery: Improved tokenization and use standard tokens correctly (#3244)
1 parent 59ef51d commit 5688f48

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed
 

‎components/prism-powerquery.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
Prism.languages.powerquery = {
44
'comment': {
5-
pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:\/\/).*)/,
6-
lookbehind: true
5+
pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,
6+
lookbehind: true,
7+
greedy: true
78
},
89
'quoted-identifier': {
910
pattern: /#"(?:[^"\r\n]|"")*"(?!")/,
10-
greedy: true,
11-
alias: 'variable'
11+
greedy: true
1212
},
1313
'string': {
14-
pattern: /"(?:[^"\r\n]|"")*"(?!")/,
14+
pattern: /(?:#!)?"(?:[^"\r\n]|"")*"(?!")/,
1515
greedy: true
1616
},
1717
'constant': [
@@ -36,12 +36,12 @@ Prism.languages.powerquery = {
3636
'boolean': /\b(?:false|true)\b/,
3737
'keyword': /\b(?:and|as|each|else|error|if|in|is|let|meta|not|nullable|optional|or|otherwise|section|shared|then|try|type)\b|#(?:binary|date|datetime|datetimezone|duration|infinity|nan|sections|shared|table|time)\b/,
3838
'function': {
39-
pattern: /(^|[^#\w.])(?!\d)[\w.]+(?=\s*\()/,
39+
pattern: /(^|[^#\w.])[a-z_][\w.]*(?=\s*\()/i,
4040
lookbehind: true
4141
},
4242
'data-type': {
4343
pattern: /\b(?:any|anynonnull|binary|date|datetime|datetimezone|duration|function|list|logical|none|number|record|table|text|time)\b/,
44-
alias: 'variable'
44+
alias: 'class-name'
4545
},
4646
'number': {
4747
pattern: /\b0x[\da-f]+\b|(?:[+-]?(?:\b\d+\.)?\b\d+|[+-]\.\d+|(^|[^.])\B\.\d+)(?:e[+-]?\d+)?\b/i,

‎components/prism-powerquery.min.js

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

‎tests/languages/powerquery/string_feature.test

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22
"foo"
33
"foo""bar"
44

5+
#!"Hello world#(cr,lf)"
6+
57
----------------------------------------------------
68

79
[
810
["string", "\"\""],
911
["string", "\"foo\""],
10-
["string", "\"foo\"\"bar\""]
12+
["string", "\"foo\"\"bar\""],
13+
14+
["string", "#!\"Hello world#(cr,lf)\""]
1115
]
1216

1317
----------------------------------------------------
1418

15-
Checks for strings.
19+
Checks for strings.

0 commit comments

Comments
 (0)
Please sign in to comment.