MCPcopy Index your code
hub / github.com/angular/angular / mark

Function mark

packages/zone.js/lib/zone-impl.ts:777–779  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

775 const performance: {mark(name: string): void; measure(name: string, label: string): void} =
776 global['performance'];
777 function mark(name: string) {
778 performance && performance['mark'] && performance['mark'](name);
779 }
780 function performanceMeasure(name: string, label: string) {
781 performance && performance['measure'] && performance['measure'](name, label);
782 }

Callers 8

initZoneFunction · 0.70
__load_patchMethod · 0.70
promise.jsFile · 0.50
listenerFunction · 0.50
timeout.jsFile · 0.50
testAddRemoveFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…