(type)
| 110 | } |
| 111 | |
| 112 | getEntriesByType(type) { |
| 113 | validateThisInternalField(this, kPerformanceBrand, 'Performance'); |
| 114 | if (arguments.length === 0) { |
| 115 | throw new ERR_MISSING_ARGS('type'); |
| 116 | } |
| 117 | type = `${type}`; |
| 118 | return filterBufferMapByNameAndType(undefined, type); |
| 119 | } |
| 120 | |
| 121 | mark(name, options = kEmptyObject) { |
| 122 | validateThisInternalField(this, kPerformanceBrand, 'Performance'); |
no test coverage detected