Yogstation 13 - Modules - TypesDefine Details

yogstation/code/modules/scripting/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.