Parsing JSON
Question
- Exam Parsing JSON: pdf file. Question: Parse the JSON Language
Examples of Solutions
- Solution: JSON parser in nearley.js (opens in a new tab)
- Task to do: Improve the solution by using your own lexical analyzer generator instead of the current moo lexer, removing the explicit use of white spaces (syntactic variable
_
like in the production rulepair -> key _ ":" _ value
) in the Nearley grammar
- Task to do: Improve the solution by using your own lexical analyzer generator instead of the current moo lexer, removing the explicit use of white spaces (syntactic variable
- Solution: JSON parser in yacc (opens in a new tab)
- Solution: JSON parser in pegjs (opens in a new tab)
Translator from Egg AST to AST Term
Question
Example of a second part for the exam:
Assume the input JSON contains an Egg AST and translate it to AST Term notation.
Here is an example. Given the input program:
➜ evm2term git:(master) cat examples/property.egg
x["sub", 1]("length") # 3
Whose JSON looks like:
➜ evm2term git:(master) head -n 4 examples/property.json
{
"type": "apply",
"operator": {
"type": "property",
The output of the evm2term
translator will be:
➜ evm2term git:(master) evm2term examples/property.json
apply(op:property(op:word{x}, args:[value{sub},value{1}]), args:[value{length}])
Possible Improvements if you decide it to present as TFA:
- Add pretty printing of the term
- Give support to JS Esprima ASTs
- Make it generic so that any compiler AST can be added via some configuration
Example of Solution
- See package evm2term (opens in a new tab) and file crguezl/evm2term/index.js (opens in a new tab) for a solution using
estraverse