I would like to make var3 in the code sample below be given a custom highlighting style (green squiggly underline) that indicates it has not been declared.
[globalvariabledefinitions]
var1="adslkfjalkd"
[context]
set(var2="asfdsakj")
print(${systemdefinedvariable}+${var1}+${var2}+${var3})
As you can see there are a few different ways variables can be defined and also in built system variables.
I have the lexical analysis pretty much complete using a dynamic syntax language.
I am new to this control and finding it difficult to understand how everything fits together. A basic outline of how I should set about achieving the above would be greatly appreciated!
[globalvariabledefinitions]
var1="adslkfjalkd"
[context]
set(var2="asfdsakj")
print(${systemdefinedvariable}+${var1}+${var2}+${var3})
As you can see there are a few different ways variables can be defined and also in built system variables.
I have the lexical analysis pretty much complete using a dynamic syntax language.
I am new to this control and finding it difficult to understand how everything fits together. A basic outline of how I should set about achieving the above would be greatly appreciated!