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
Variable outputStream in VAR statement was recognized as identifier, but later parsed as two separate keywords, which brings up error and rest of the file is not being formatted.
Example:
method public void WriteJson(filePath as char, inputJson as Object):
var JsonSerializer jsonSerializer = new JsonSerializer(true).
var FileOutputStream outputStream = new FileOutputStream(filePath).
jsonSerializer:Serialize(inputJson, outputStream).
outputStream:Close().
end method.
Same happened with inputTable. And then after this it even thought that "def" in word "default" is DEFINE. Example:
This:
if inputTable:default-buffer-handle:available = false then
undo, throw new AppException(ErrorCode:RECORD_NOT_FOUND, inputTable:name).
The text was updated successfully, but these errors were encountered:
Variable
outputStream
in VAR statement was recognized as identifier, but later parsed as two separate keywords, which brings up error and rest of the file is not being formatted.Example:
Same happened with
inputTable
. And then after this it even thought that "def" in word "default" is DEFINE. Example:This:
The text was updated successfully, but these errors were encountered: