Parsing
↔ (process) to read Source Code & generate AST.
aka Parsing-Phase
AST
tree data struct to rep Source Code by organize JS Keywords for JS Engine
References
SyntaxError
↔ Exception due to incorrect JS Syntax, will throw at Parsing/Compilation phase of Source CodeASI
↔ (process) to auto insert missing semicolons in Parsing Phase -☠2;
!