-
Notifications
You must be signed in to change notification settings - Fork 26.2k
/
Copy pathprofiler_types.ts
164 lines (136 loc) Β· 4.33 KB
/
profiler_types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*!
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
// Note: ideally we would roll these types into the `profiler.ts`. During the update to TS 5.5
// they had to be moved out into a separate file, because `@microsoft/api-extractor` was throwing
// an error saying `Unable to follow symbol for "Profiler"`.
/**
* Profiler events is an enum used by the profiler to distinguish between different calls of user
* code invoked throughout the application lifecycle.
*/
export const enum ProfilerEvent {
/**
* Corresponds to the point in time before the runtime has called the template function of a
* component with `RenderFlags.Create`.
*/
TemplateCreateStart,
/**
* Corresponds to the point in time after the runtime has called the template function of a
* component with `RenderFlags.Create`.
*/
TemplateCreateEnd,
/**
* Corresponds to the point in time before the runtime has called the template function of a
* component with `RenderFlags.Update`.
*/
TemplateUpdateStart,
/**
* Corresponds to the point in time after the runtime has called the template function of a
* component with `RenderFlags.Update`.
*/
TemplateUpdateEnd,
/**
* Corresponds to the point in time before the runtime has called a lifecycle hook of a component
* or directive.
*/
LifecycleHookStart,
/**
* Corresponds to the point in time after the runtime has called a lifecycle hook of a component
* or directive.
*/
LifecycleHookEnd,
/**
* Corresponds to the point in time before the runtime has evaluated an expression associated with
* an event or an output.
*/
OutputStart,
/**
* Corresponds to the point in time after the runtime has evaluated an expression associated with
* an event or an output.
*/
OutputEnd,
/**
* Corresponds to the point in time just before application bootstrap.
*/
BootstrapApplicationStart,
/**
* Corresponds to the point in time after application bootstrap.
*/
BootstrapApplicationEnd,
/**
* Corresponds to the point in time just before root component bootstrap.
*/
BootstrapComponentStart,
/**
* Corresponds to the point in time after root component bootstrap.
*/
BootstrapComponentEnd,
/**
* Corresponds to the point in time just before Angular starts a change detection tick.
*/
ChangeDetectionStart,
/**
* Corresponds to the point in time after Angular ended a change detection tick.
*/
ChangeDetectionEnd,
/**
* Corresponds to the point in time just before Angular starts a new synchronization pass of change detection tick.
*/
ChangeDetectionSyncStart,
/**
* Corresponds to the point in time after Angular ended a synchronization pass.
*/
ChangeDetectionSyncEnd,
/**
* Corresponds to the point in time just before Angular executes after render hooks.
*/
AfterRenderHooksStart,
/**
* Corresponds to the point in time after Angular executed after render hooks.
*/
AfterRenderHooksEnd,
/**
* Corresponds to the point in time just before Angular starts processing a component (create or update).
*/
ComponentStart,
/**
* Corresponds to the point in time after Angular finished processing a component.
*/
ComponentEnd,
/**
* Corresponds to the point in time just before a defer block transitions between states.
*/
DeferBlockStateStart,
/**
* Corresponds to the point in time after a defer block transitioned between states.
*/
DeferBlockStateEnd,
/**
* Corresponds to the point in time just before a component instance is created dynamically.
*/
DynamicComponentStart,
/**
* Corresponds to the point in time after a a component instance is created dynamically.
*/
DynamicComponentEnd,
/**
* Corresponds to the point in time before the runtime has called the host bindings function
* of a directive.
*/
HostBindingsUpdateStart,
/**
* Corresponds to the point in time after the runtime has called the host bindings function
* of a directive.
*/
HostBindingsUpdateEnd,
}
/**
* Profiler function which the runtime will invoke before and after user code.
*/
export interface Profiler {
(event: ProfilerEvent, instance?: {} | null, eventFn?: Function): void;
}