Skip to content

Latest commit

 

History

History

formatters

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Formatters

This folder contains a collection of formatters for the parsed abstract syntax tree.

Default

The default formatter converts the AST to prettified JSON.

Graph

Formats the AST into a collection of Nodes and Edges:

{
  "nodes": [
    ...
  ],
  "edges": [
    ...
  ]
}

According to the following Graph:

Graph