Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 371 Bytes

notes.md

File metadata and controls

9 lines (6 loc) · 371 Bytes

Notes

There are two kinds of nodes in the abstract syntax tree (AST): declaration and expression. The root is the tree is always a module.

  • All expression nodes implement the interface Exp.
  • All declaration nodes implement the interface Dec.

References

Standard ML grammar