File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
## 0.3.1
2
2
- Export as PNG
3
3
- Theme support (not fully implemented, only one theme currently 'original')
4
- - Improved colouring on links and linked deployments
5
- - Bug fixes on linked templates, quelle suprise
4
+ - VS Code theme colouring on links between nodes and box around linked deployments
5
+ - Fixes to expression evaluation (uri, replace) and guid() function added
6
+ - Yet more fixes on linked templates
7
+ - Large scale internal refactoring for better code structure & TypeScript
6
8
7
9
8
10
## 0.3.0
Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ export default class ARMExpressionParser {
59
59
}
60
60
}
61
61
62
- // It looks like a 'plain' function call
62
+ // It looks like a 'plain' function call without . something after it
63
+ // For historic reasons we treat these separate and I don't want to mess with it, as it works
63
64
match = exp . match ( / ( \w + ) \( ( .* ) \) / ) ;
64
65
if ( match ) {
65
66
let funcName = match [ 1 ] . toLowerCase ( ) ;
@@ -109,7 +110,7 @@ export default class ARMExpressionParser {
109
110
}
110
111
}
111
112
112
- // It looks like a string literal
113
+ // It looks like a string literal in single quotes
113
114
match = exp . match ( / ^ \' ( .* ) \' $ / ) ;
114
115
if ( match ) {
115
116
return match [ 1 ] ;
You can’t perform that action at this time.
0 commit comments