Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/linter/lib/
DTypeScriptLinter.ts1474 const tsModuleDecl = node as ts.ModuleDeclaration; constant
1476 this.countDeclarationsWithDuplicateName(tsModuleDecl.name, tsModuleDecl);
1478 const tsModuleBody = tsModuleDecl.body;
1479 const tsModifiers = ts.getModifiers(tsModuleDecl);
1487 !(tsModuleDecl.flags & ts.NodeFlags.Namespace) &&
1490 this.incrementCounters(tsModuleDecl, FaultID.ShorthandAmbientModuleDecl);
1493 if (ts.isStringLiteral(tsModuleDecl.name) && tsModuleDecl.name.text.includes('*')) {
1494 this.incrementCounters(tsModuleDecl, FaultID.WildcardsInModuleName);