[][src]Module mdl_monkey::ast

An abstract syntax tree for the Monkey programming language from https://interpreterbook.com/.

Structs

Identifier

A programmer-created identifier.

LetStatement

A statement that binds an expression to an identifier.

Program

The top level structure of a Monkey program.

ReturnStatement

A statement that returns a value.

Enums

Expression

A computed expression.

Statement

Possible statement types in Monkey.