declare key value
Sets an interpreter option. The key direct-calls , when set to t, optimizes function calls on the assumption they will not be redefined as table. The key explicit-flush , when set to t, disables automatic flushing of output, requiring explicit flushout calls. Both are initializes to nil. New in arc3.
|
>(declare direct-calls t)
Error: _direct-calls: undefined;
cannot reference undefined
identifier
>(declare explicit-flush t)
Error: _explicit-flush: undefined;
cannot reference undefin
ed identifier
|