(identifier: string)
| 160 | } |
| 161 | |
| 162 | startTrace(identifier: string): Trace { |
| 163 | const trace = Trace.fromNative(this.native.traceWithName(identifier)); |
| 164 | trace.start(); |
| 165 | return trace; |
| 166 | } |
| 167 | |
| 168 | get native() { |
| 169 | return this._native; |
nothing calls this directly
no test coverage detected