File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
server/src/macroLanguageService/parser Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.4.2 (July 6, 2022)
2
+ - Fix a bug if an undefined symbol crashes the validator
3
+
1
4
## 0.4.1 (July 5, 2022)
2
5
- Fix a bug when using custom keywords for semantic highlighting
3
6
Original file line number Diff line number Diff line change 2
2
"name" : " macro-executor" ,
3
3
"displayName" : " Macro Executor Language" ,
4
4
"description" : " Fanuc Macro-Executor Programming Language" ,
5
- "version" : " 0.4.1 " ,
5
+ "version" : " 0.4.2 " ,
6
6
"author" : " iSorp" ,
7
7
"publisher" : " iSorp" ,
8
8
"license" : " MIT" ,
103
103
"command" : " macro.action.addsequeces" ,
104
104
"title" : " %macro.action.addsequeces%" ,
105
105
"category" : " Macro"
106
+ },
107
+ {
108
+ "command" : " macro.validate.workspace" ,
109
+ "title" : " %macro.validate.workspace%" ,
110
+ "category" : " Macro"
106
111
}
107
112
],
108
113
"menus" : {
Original file line number Diff line number Diff line change @@ -573,7 +573,8 @@ export class DefReference extends Reference {
573
573
}
574
574
575
575
public getNonSymbolText ( ) : string {
576
- return this . definition ?. value ?. getText ( ) ;
576
+ return this . definition ?. value ?. getText ( ) ?? ''
577
+ ;
577
578
}
578
579
}
579
580
You can’t perform that action at this time.
0 commit comments