(trace)
| 2034 | } |
| 2035 | }, |
| 2036 | filteredEvents(trace) { |
| 2037 | if (!trace) { |
| 2038 | return []; |
| 2039 | } |
| 2040 | return trace.events.filter((event) => event.kind !== 'token_snapshot'); |
| 2041 | }, |
| 2042 | highlightRenderedCode() { |
| 2043 | if (!window.hljs) { |
| 2044 | return; |
nothing calls this directly
no outgoing calls
no test coverage detected