Lines Matching full:protected
92 protected debugTag = "scope";
93 protected name2variable: Map<string, Variable> = new Map<string, Variable>();
94 protected decls: Decl[] = [];
95 protected parent: Scope | undefined = undefined;
97 protected startInsIdx: number | undefined;
98 protected endInsIdx: number | undefined;
302 protected startLexIdx: number = 0;
303 protected needCreateLexEnv: boolean = false;
304 protected parameters: LocalVariable[] = [];
305 protected useArgs = false;
306 protected node: ts.Node | undefined = undefined;
307 protected parentVariableScope: VariableScope | null = null;
308 protected childVariableScope: VariableScope[] = [];
309 protected lexVarInfo: Map<string, number> = new Map<string, number>();
546 protected startLexIdx: number = 0;
547 protected needCreateLexEnv: boolean = false;
548 protected lexVarInfo: Map<string, number> = new Map<string, number>();