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