(identifier: string)
| 156 | return HttpMetric.fromUrlMethod(url, httpMethod); |
| 157 | } |
| 158 | newTrace(identifier: string): Trace { |
| 159 | return Trace.fromNative(this.native.traceWithName(identifier)); |
| 160 | } |
| 161 | |
| 162 | startTrace(identifier: string): Trace { |
| 163 | const trace = Trace.fromNative(this.native.traceWithName(identifier)); |
nothing calls this directly
no test coverage detected