• Home
  • Raw
  • Download

Lines Matching full:undefined

95     protected parent: Scope | undefined = undefined;
97 protected startInsIdx: number | undefined;
98 protected endInsIdx: number | undefined;
103 … add(decl: Decl | string, declKind: VarDeclarationKind, status?: InitStatus): Variable | undefined;
125 setParent(parentScope: Scope | undefined) {
129 getParent(): Scope | undefined {
134 let sp: Scope | undefined = this;
136 while (pp != undefined) {
144 getNearestVariableScope(): VariableScope | undefined {
145 let sp: Scope | undefined = this;
154 return undefined;
157 getNearestLexicalScope(): VariableScope | LoopScope | undefined {
158 let curScope: Scope | undefined = this;
167 return undefined;
170 getNthVariableScope(level: number): VariableScope | undefined {
171 let sp: Scope | undefined = this;
185 return undefined;
188 findLocal(name: string): Variable | undefined {
192 find(name: string): { scope: Scope | undefined, level: number, v: Variable | undefined } {
194 let curScope: Scope | undefined = this;
205 LOGD(undefined, resolve);
212 LOGD(this.debugTag, "scope.find (" + name + ") : undefined");
213 return { scope: undefined, level: 0, v: undefined };
216 findDeclPos(name: string): Scope | undefined {
217 let declPos: Scope | undefined = undefined;
218 let curScope: Scope | undefined = this;
233 let curScope: Scope | undefined = this;
244 … return {isLexical: false, scope: curScope, defLexicalScope: undefined, v: result};
254 return {isLexical: false, scope: undefined, defLexicalScope: undefined, v: undefined};
272 getDecl(name: string): Decl | undefined {
280 return undefined;
306 protected node: ts.Node | undefined = undefined;
339 addParameter(name: string, declKind: VarDeclarationKind, argIdx: number): Variable | undefined {
402 this.node = node ? node : undefined;
405 …add(decl: Decl | string, declKind: VarDeclarationKind, status?: InitStatus): Variable | undefined {
408 let v: Variable | undefined;
439 …add(decl: Decl | string, declKind: VarDeclarationKind, status?: InitStatus): Variable | undefined {
442 let v: Variable | undefined;
469 this.parent = parent ? parent : undefined;
470 this.node = node ? node : undefined;
489 getParent(): Scope | undefined {
493 …add(decl: Decl | string, declKind: VarDeclarationKind, status?: InitStatus): Variable | undefined {
495 let v: Variable | undefined;
520 …add(decl: Decl | string, declKind: VarDeclarationKind, status?: InitStatus): Variable | undefined {
522 let v: Variable | undefined;