File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ import {
1212 PotentialInfiniteRecursionError
1313} from '../errors/timeoutErrors'
1414import { Chapter , type NativeStorage } from '../types'
15- import { callExpression , locationDummyNode } from './ast/astCreator'
1615import * as create from './ast/astCreator'
16+ import { callExpression , locationDummyNode } from './ast/astCreator'
1717import { makeWrapper } from './makeWrapper'
1818import * as rttc from './rttc'
1919
@@ -249,7 +249,7 @@ export const wrap = (
249249 const wrapped = ( ...args : any [ ] ) => callIteratively ( f , nativeStorage , ...args )
250250 makeWrapper ( f , wrapped )
251251 wrapped . transformedFunction = f
252- wrapped [ Symbol . toStringTag ] = ( ) => stringified
252+ ; ( wrapped as any ) [ Symbol . toStringTag ] = ( ) => stringified
253253 wrapped . toString = ( ) => stringified
254254 return wrapped
255255}
You can’t perform that action at this time.
0 commit comments