debugObjectStack method

void debugObjectStack({
  1. int? index,
  2. bool simple = true,
})

打印运行时作用域堆栈

Implementation

void debugObjectStack({int? index, bool simple = true}) {
  logDebug([_encoder.convert(_runner.toJsonObjectStack(index: index, simple: simple))]);
}