You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another instance of macros defeating the parser with their strange syntax exceptions.
Basically, vasm lets you access local labels from out of scope using the convention global_label\.local_label. In macros, the backslash is used for special macro parameters, so it needs to be escaped for other uses. That means in macros, local labels are referenced like global_label\\.local_label, which results in the LSP parser error.
Another instance of macros defeating the parser with their strange syntax exceptions.
Basically, vasm lets you access local labels from out of scope using the convention
global_label\.local_label
. In macros, the backslash is used for special macro parameters, so it needs to be escaped for other uses. That means in macros, local labels are referenced likeglobal_label\\.local_label
, which results in the LSP parser error.The text was updated successfully, but these errors were encountered: