64 ReactStackTrace,
65 ReactCallSite,
66▶ ReactFunctionLocation,
67 ReactErrorInfo,
68 ReactErrorInfoDev,
· · ·
170const doNotLimit: WeakSet<Reference> = __DEV__ ? new WeakSet() : (null as any);
171
172▶function defaultFilterStackFrame(
173 filename: string,
174 functionName: string,
· · ·
174▶ functionName: string,
175): boolean {
176 return (
· · ·
181}
182
183▶function devirtualizeURL(url: string): string {
184 if (url.startsWith('about://React/')) {
185 // This callsite is a virtual fake callsite that came from another Flight client.
· · ·
196}
197
198▶function isPromiseCreationInternal(url: string, functionName: string): boolean {
199 // Various internals of the JS VM can create Promises but the call frame of the
200 // internals are not very interesting for our purposes so we need to skip those.
+ 267 more matches in this file