File tree Expand file tree Collapse file tree
server/src/macroLanguageService/parser Expand file tree Collapse file tree 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+
14## 0.4.1 (July 5, 2022)
25- Fix a bug when using custom keywords for semantic highlighting
36
Original file line number Diff line number Diff line change 22 "name" : " macro-executor" ,
33 "displayName" : " Macro Executor Language" ,
44 "description" : " Fanuc Macro-Executor Programming Language" ,
5- "version" : " 0.4.1 " ,
5+ "version" : " 0.4.2 " ,
66 "author" : " iSorp" ,
77 "publisher" : " iSorp" ,
88 "license" : " MIT" ,
103103 "command" : " macro.action.addsequeces" ,
104104 "title" : " %macro.action.addsequeces%" ,
105105 "category" : " Macro"
106+ },
107+ {
108+ "command" : " macro.validate.workspace" ,
109+ "title" : " %macro.validate.workspace%" ,
110+ "category" : " Macro"
106111 }
107112 ],
108113 "menus" : {
Original file line number Diff line number Diff line change @@ -573,7 +573,8 @@ export class DefReference extends Reference {
573573 }
574574
575575 public getNonSymbolText ( ) : string {
576- return this . definition ?. value ?. getText ( ) ;
576+ return this . definition ?. value ?. getText ( ) ?? ''
577+ ;
577578 }
578579}
579580
You can’t perform that action at this time.
0 commit comments