File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -219,11 +219,11 @@ class Decoder {
219
219
220
220
if ( item . nameIdx !== undefined ) {
221
221
this . #scopeState. name += item . nameIdx ;
222
- scope . name = this . resolveName ( this . #scopeState. name ) ;
222
+ scope . name = this . # resolveName( this . #scopeState. name ) ;
223
223
}
224
224
if ( item . kindIdx !== undefined ) {
225
225
this . #scopeState. kind += item . kindIdx ;
226
- scope . kind = this . resolveName ( this . #scopeState. kind ) ;
226
+ scope . kind = this . # resolveName( this . #scopeState. kind ) ;
227
227
}
228
228
229
229
scope . isStackFrame = Boolean (
@@ -245,7 +245,7 @@ class Decoder {
245
245
246
246
for ( const variableIdx of variableIdxs ) {
247
247
this . #scopeState. variable += variableIdx ;
248
- scope . variables . push ( this . resolveName ( this . #scopeState. variable ) ) ;
248
+ scope . variables . push ( this . # resolveName( this . #scopeState. variable ) ) ;
249
249
}
250
250
}
251
251
@@ -358,7 +358,7 @@ class Decoder {
358
358
}
359
359
}
360
360
361
- protected resolveName ( index : number ) : string {
361
+ # resolveName( index : number ) : string {
362
362
if ( index < 0 || index >= this . #names. length ) {
363
363
this . #throwInStrictMode( "Illegal index into the 'names' array" ) ;
364
364
}
You can’t perform that action at this time.
0 commit comments