8 lines
243 B
JavaScript
8 lines
243 B
JavaScript
// All of the compile functions are provided for use in compiling parse trees
|
|
// Every compile function takes in ParseNodes as arguements and returns a single
|
|
// ConstantNode as a result
|
|
|
|
const compileFunctions = {};
|
|
|
|
export compileFunctions;
|