class documentation

class CompilerState(IntEnum): (source)

View In Hierarchy

Undocumented

Constant COMPILING statement is present, compilation phase in progress
Constant NO_STATEMENT compiler does not have a statement to compile, is used for method access
Constant STRING_APPLIED statement is present, string form of the statement has been applied.
COMPILING: int = (source)

statement is present, compilation phase in progress

Value
0
NO_STATEMENT: int = (source)

compiler does not have a statement to compile, is used for method access

Value
2
STRING_APPLIED: int = (source)

statement is present, string form of the statement has been applied. Additional processors by subclasses may still be pending.

Value
1