Safety<V extends Object>.const$ constructor
const
Safety<V extends Object>.const$ (
- V wrapped, [
- Log log = const Log.const$(NotExist, '', {})
実行速度重視のための実装の const constructor.
そのため Log._monitor, Log._debug, Log._historyList は const で定義され 追加の操作ができず 最低限の情報(Log.classLocation, Log.functionLocation)しか利用できない.
Implementation
const Safety.const$(this.wrapped, [this.log = const Log.const$(NotExist, '', {})]);