#pragma once #include "Token.h" /* AST element */ typedef struct Node Node; struct Node { const Token *tok; Node *lhs; Node *rhs; };