Skip to content

Commit d30a2da

Browse files
Powershell: Fixed lookbehind + refactoring (#3245)
1 parent 5688f48 commit d30a2da

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

components/prism-powershell.js

+12-14
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,7 @@
1515
{
1616
pattern: /"(?:`[\s\S]|[^`"])*"/,
1717
greedy: true,
18-
inside: {
19-
'function': {
20-
// Allow for one level of nesting
21-
pattern: /(^|[^`])\$\((?:\$\([^\r\n()]*\)|(?!\$\()[^\r\n)])*\)/,
22-
lookbehind: true,
23-
// Populated at end of file
24-
inside: {}
25-
}
26-
}
18+
inside: null // see below
2719
},
2820
{
2921
pattern: /'(?:[^']|'')*'/,
@@ -45,16 +37,22 @@
4537
// per http://technet.microsoft.com/en-us/library/hh847744.aspx
4638
'keyword': /\b(?:Begin|Break|Catch|Class|Continue|Data|Define|Do|DynamicParam|Else|ElseIf|End|Exit|Filter|Finally|For|ForEach|From|Function|If|InlineScript|Parallel|Param|Process|Return|Sequence|Switch|Throw|Trap|Try|Until|Using|Var|While|Workflow)\b/i,
4739
'operator': {
48-
pattern: /(\W?)(?:!|-(?:b?(?:and|x?or)|as|(?:Not)?(?:Contains|In|Like|Match)|eq|ge|gt|is(?:Not)?|Join|le|lt|ne|not|Replace|sh[lr])\b|-[-=]?|\+[+=]?|[*\/%]=?)/i,
40+
pattern: /(^|\W)(?:!|-(?:b?(?:and|x?or)|as|(?:Not)?(?:Contains|In|Like|Match)|eq|ge|gt|is(?:Not)?|Join|le|lt|ne|not|Replace|sh[lr])\b|-[-=]?|\+[+=]?|[*\/%]=?)/i,
4941
lookbehind: true
5042
},
5143
'punctuation': /[|{}[\];(),.]/
5244
};
5345

5446
// Variable interpolation inside strings, and nested expressions
55-
var stringInside = powershell.string[0].inside;
56-
stringInside.boolean = powershell.boolean;
57-
stringInside.variable = powershell.variable;
58-
stringInside.function.inside = powershell;
47+
powershell.string[0].inside = {
48+
'function': {
49+
// Allow for one level of nesting
50+
pattern: /(^|[^`])\$\((?:\$\([^\r\n()]*\)|(?!\$\()[^\r\n)])*\)/,
51+
lookbehind: true,
52+
inside: powershell
53+
},
54+
'boolean': powershell.boolean,
55+
'variable': powershell.variable,
56+
};
5957

6058
}(Prism));

components/prism-powershell.min.js

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

0 commit comments

Comments
 (0)