Home
last modified time | relevance | path

Searched refs:ModuleVarKind (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/
Dscope.ts33 export enum ModuleVarKind { enum
40 isModule: ModuleVarKind;
42 constructor(name: string, node: ts.Node, isModule: ModuleVarKind) {
50 constructor(varName: string, node: ts.Node, isModule: ModuleVarKind) {
56 constructor(letName: string, node: ts.Node, isModule: ModuleVarKind) {
62 constructor(constName: string, node: ts.Node, isModule: ModuleVarKind) {
68 constructor(funcName: string, node: ts.Node, isModule: ModuleVarKind) {
74 constructor(className: string, node: ts.Node, isModule: ModuleVarKind) {
80 constructor(cpName: string, node: ts.Node, isModule: ModuleVarKind = ModuleVarKind.NOT) {
86 constructor(fpName: string, node: ts.Node, isModule: ModuleVarKind = ModuleVarKind.NOT) {
[all …]
Dhoisting.ts29 ModuleVarKind,
62 if (decl.isModule !== ModuleVarKind.NOT) {
83 if (decl.isModule !== ModuleVarKind.NOT) {
Drecorder.ts43 ModuleVarKind,
273 let moduleKind = isExport ? ModuleVarKind.EXPORTED : ModuleVarKind.NOT;
341 let moduleKind = isExportDecl ? ModuleVarKind.EXPORTED : ModuleVarKind.NOT;
474 scope.setDecls(new ConstDecl(nameSpace, namedBindings, ModuleVarKind.NOT));
485 scope.setDecls(new ConstDecl(localName, element, ModuleVarKind.IMPORTED));
497 scope.setDecls(new ConstDecl(localName, importClause.name, ModuleVarKind.IMPORTED));
577 scope.setDecls(new LetDecl("*default*", node, ModuleVarKind.EXPORTED));
623 let moduleKind = isExport ? ModuleVarKind.EXPORTED : ModuleVarKind.NOT;
650 let funcDecl = new FuncDecl(funcName, node, ModuleVarKind.NOT);