@@ -41,9 +41,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
4141 // This is for cases where precompiled binaries were not provided, but may have been compiled from source.
4242 if ( platform === 'darwin' ) {
4343 if ( arch === 'x64' ) {
44- if ( abi === '93' ) {
45- return require ( './sentry_cpu_profiler-darwin-x64-93.node' ) ;
46- }
4744 if ( abi === '108' ) {
4845 return require ( './sentry_cpu_profiler-darwin-x64-108.node' ) ;
4946 }
@@ -56,9 +53,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
5653 }
5754
5855 if ( arch === 'arm64' ) {
59- if ( abi === '93' ) {
60- return require ( './sentry_cpu_profiler-darwin-arm64-93.node' ) ;
61- }
6256 if ( abi === '108' ) {
6357 return require ( './sentry_cpu_profiler-darwin-arm64-108.node' ) ;
6458 }
@@ -73,9 +67,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
7367
7468 if ( platform === 'win32' ) {
7569 if ( arch === 'x64' ) {
76- if ( abi === '93' ) {
77- return require ( './sentry_cpu_profiler-win32-x64-93.node' ) ;
78- }
7970 if ( abi === '108' ) {
8071 return require ( './sentry_cpu_profiler-win32-x64-108.node' ) ;
8172 }
@@ -91,9 +82,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
9182 if ( platform === 'linux' ) {
9283 if ( arch === 'x64' ) {
9384 if ( stdlib === 'musl' ) {
94- if ( abi === '93' ) {
95- return require ( './sentry_cpu_profiler-linux-x64-musl-93.node' ) ;
96- }
9785 if ( abi === '108' ) {
9886 return require ( './sentry_cpu_profiler-linux-x64-musl-108.node' ) ;
9987 }
@@ -105,9 +93,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
10593 }
10694 }
10795 if ( stdlib === 'glibc' ) {
108- if ( abi === '93' ) {
109- return require ( './sentry_cpu_profiler-linux-x64-glibc-93.node' ) ;
110- }
11196 if ( abi === '108' ) {
11297 return require ( './sentry_cpu_profiler-linux-x64-glibc-108.node' ) ;
11398 }
@@ -121,9 +106,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
121106 }
122107 if ( arch === 'arm64' ) {
123108 if ( stdlib === 'musl' ) {
124- if ( abi === '93' ) {
125- return require ( './sentry_cpu_profiler-linux-arm64-musl-93.node' ) ;
126- }
127109 if ( abi === '108' ) {
128110 return require ( './sentry_cpu_profiler-linux-arm64-musl-108.node' ) ;
129111 }
@@ -136,9 +118,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
136118 }
137119
138120 if ( stdlib === 'glibc' ) {
139- if ( abi === '93' ) {
140- return require ( './sentry_cpu_profiler-linux-arm64-glibc-93.node' ) ;
141- }
142121 if ( abi === '108' ) {
143122 return require ( './sentry_cpu_profiler-linux-arm64-glibc-108.node' ) ;
144123 }
@@ -190,7 +169,7 @@ class Bindings implements V8CpuProfilerBindings {
190169
191170 return PrivateCpuProfilerBindings . stopProfiling (
192171 name ,
193- format as unknown as any ,
172+ format as unknown as number ,
194173 threadId ,
195174 ! ! global . _sentryDebugIds ,
196175 ) ;
@@ -199,4 +178,4 @@ class Bindings implements V8CpuProfilerBindings {
199178
200179export const CpuProfilerBindings = new Bindings ( ) ;
201180
202- export * from './types' ;
181+ export * from './types' ;
0 commit comments