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.
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:
The text was updated successfully, but these errors were encountered: