/tg/ Station 13 - Modules - TypesDefine Details

modular_tannhauser/modules/NTSL/code/coding_language/parser/expressions.dm

OPERATORA value indicating the parser currently expects a binary operator.
VALUEA value indicating the parser currently expects a value.
SHIFTTells the parser to push the current operator onto the stack.
REDUCETells the parser to reduce the stack.

Define Details

OPERATOR

A value indicating the parser currently expects a binary operator.

REDUCE

Tells the parser to reduce the stack.

SHIFT

Tells the parser to push the current operator onto the stack.

VALUE

A value indicating the parser currently expects a value.