• Home
  • Raw
  • Download

Lines Matching full:private

63     private scopeMap: Map<ts.Node, Scope> = new Map<ts.Node, Scope>();
64 private hoistMap: Map<Scope, Decl[]> = new Map<Scope, Decl[]>();
65private parametersMap: Map<ts.FunctionLikeDeclaration, FunctionParameter[]> = new Map<ts.FunctionL…
66 private funcNameMap: Map<string, number>;
67private class2Ctor: Map<ts.ClassLikeDeclaration, ts.ConstructorDeclaration> = new Map<ts.ClassLike…
68 private isTsFile: boolean;
70 private importStmts: Array<ModuleStmt> = [];
71 private exportStmts: Array<ModuleStmt> = [];
72 private syntaxCheckStatus: boolean;
102 private setParent(node: ts.Node) {
113 private recordInfo(node: ts.Node, scope: Scope) {
258 private recordClassInfo(childNode: ts.ClassLikeDeclaration, scope: Scope, isExport: boolean) {
285 private recordVariableDecl(id: ts.Identifier, scope: Scope) {
337private addVariableDeclToScope(scope: Scope, node: ts.Node, parent: ts.Node, name: string, declKin…
361 private getDeclarationNodeOfId(id: ts.Identifier): ts.VariableDeclaration | undefined {
379 private recordImportInfo(node: ts.ImportDeclaration): ModuleStmt {
428 private recordExportInfo(node: ts.ExportDeclaration): ModuleStmt {
460 private getModuleSpecifier(moduleSpecifier: ts.Expression): string {
467private recordEcmaNamedBindings(namedBindings: ts.NamedImportBindings, scope: ModuleScope, moduleR…
490private recordEcmaImportClause(importClause: ts.ImportClause, scope: ModuleScope, moduleRequest: s…
503 private recordEcmaImportInfo(node: ts.ImportDeclaration, scope: Scope) {
519 private recordEcmaExportDecl(node: ts.ExportDeclaration, scope: ModuleScope) {
558private recordEcmaExportInfo(node: ts.ExportDeclaration | ts.ExportAssignment | ts.VariableStateme…
609 private recordFuncDecl(node: ts.FunctionDeclaration, scope: Scope, isExport: boolean) {
638private recordOtherFunc(node: ts.FunctionLikeDeclaration, scope: Scope) { // functionlikedecalrati…
651 private recordFuncInfo(node: ts.FunctionLikeDeclaration) {
758 private collectHoistDecls(node: ts.Node, scope: VariableScope, decl: Decl): boolean {