浏览代码

[Align 1.5.4] Finish foundation part.

/main
Yuncong Zhang 5 年前
当前提交
1521386f
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 8
      Runtime/foundation/diagnostics.cs

8
Runtime/foundation/diagnostics.cs


}
public virtual string toString(DiagnosticLevel minLevel = DiagnosticLevel.debug) {
return this.toDiagnosticsNode(style: DiagnosticsTreeStyle.singleLine).toString(minLevel: minLevel);
string fullString = null;
D.assert(() => {
fullString = this.toDiagnosticsNode(style: DiagnosticsTreeStyle.singleLine)
.toString(minLevel: minLevel);
return true;
});
return fullString ?? this.toStringShort();
}
public virtual DiagnosticsNode toDiagnosticsNode(

正在加载...
取消
保存