Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 455 Bytes

File metadata and controls

14 lines (9 loc) · 455 Bytes

ErrorParsingModule Error

Cause

This error occurs when the compiler is unable to parse a source file.

Fix

  • Look carefully at the parse error and try to find the mistake in the source code. In particular, look at the source range and the list of expected tokens.
  • If the compiler complains about indentation, then it will include information about the expected column number, which can be useful for tracking down the problem.

Notes