DebugLevels {SMRUCC.Rsharp.Interpreter} | .NET clr documentation |
debug echo verbose level for the R# interpreter engine
# namespace SMRUCC.Rsharp.Interpreter
export class DebugLevels extends Enum {
# no debug echo, normal mode(or production mode)
None: DebugLevels = 0;
# debug echo of the memory delta change after execute each expression
Memory: DebugLevels = 1;
# print the expression executation stack data
Stack: DebugLevels = 2;
# print all data on the console
All: DebugLevels = 3;
}
None
: DebugLevelsMemory
: DebugLevelsStack
: DebugLevelsAll
: DebugLevels