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
The parser should return some sort of details about how parsing failed.
For example, if trailing commas are denied, the string "[true, ]" should return the fact that trailing commas are denied and the position that this was detected. Position should probably be represented as line-number/character-within-line. That way a file could reasonably be scanned for the parsing error for correction.
The error string should be both machine-parseable and human-readable. The 'next' tree has current work on this, but the format for errors is not yet well-defined.
The text was updated successfully, but these errors were encountered:
The parser should return some sort of details about how parsing failed.
For example, if trailing commas are denied, the string "[true, ]" should return the fact that trailing commas are denied and the position that this was detected. Position should probably be represented as line-number/character-within-line. That way a file could reasonably be scanned for the parsing error for correction.
The error string should be both machine-parseable and human-readable. The 'next' tree has current work on this, but the format for errors is not yet well-defined.
The text was updated successfully, but these errors were encountered: