@@ -72,11 +72,7 @@ export type SexpOpcode = keyof SexpOpcodeMap;
7272export namespace Core {
7373 export type Expression = Expressions . Expression ;
7474
75- export type DebugSymbols = [
76- locals : Record < string , number > ,
77- upvars : Record < string , number > ,
78- lexical : Record < string , number > ,
79- ] ;
75+ export type DebugSymbols = Record < string , number > ;
8076
8177 export type CallArgs = [ Params , Hash ] ;
8278 export type Path = [ string , ...string [ ] ] ;
@@ -259,12 +255,7 @@ export namespace Statements {
259255 | TrustingDynamicAttr
260256 | TrustingComponentAttr ;
261257
262- export type Debugger = [
263- op : DebuggerOpcode ,
264- locals : Record < string , number > ,
265- upvars : Record < string , number > ,
266- lexical : Record < string , number > ,
267- ] ;
258+ export type Debugger = [ op : DebuggerOpcode , locals : Record < string , number > ] ;
268259 export type InElement = [
269260 op : InElementOpcode ,
270261 block : SerializedInlineBlock ,
@@ -375,9 +366,8 @@ export type SerializedInlineBlock = [statements: Statements.Statement[], paramet
375366 */
376367export type SerializedTemplateBlock = [
377368 statements : Statements . Statement [ ] ,
378- locals : string [ ] ,
369+ symbols : string [ ] ,
379370 upvars : string [ ] ,
380- lexicalSymbols ?: string [ ] ,
381371] ;
382372
383373/**
0 commit comments