1 /**
2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "tsModuleDeclaration.h"
17
18 #include "varbinder/scope.h"
19 #include "checker/TSchecker.h"
20 #include "compiler/core/ETSGen.h"
21 #include "compiler/core/pandagen.h"
22 #include "ir/astDump.h"
23 #include "ir/srcDump.h"
24 #include "ir/base/decorator.h"
25 #include "ir/expression.h"
26
27 namespace panda::es2panda::ir {
TransformChildren(const NodeTransformer & cb)28 void TSModuleDeclaration::TransformChildren(const NodeTransformer &cb)
29 {
30 for (auto *&it : decorators_) {
31 it = cb(it)->AsDecorator();
32 }
33
34 name_ = cb(name_)->AsExpression();
35
36 if (body_ != nullptr) {
37 body_ = cb(body_)->AsStatement();
38 }
39 }
40
Iterate(const NodeTraverser & cb) const41 void TSModuleDeclaration::Iterate(const NodeTraverser &cb) const
42 {
43 for (auto *it : decorators_) {
44 cb(it);
45 }
46
47 cb(name_);
48
49 if (body_ != nullptr) {
50 cb(body_);
51 }
52 }
53
Dump(ir::AstDumper * dumper) const54 void TSModuleDeclaration::Dump(ir::AstDumper *dumper) const
55 {
56 dumper->Add({{"type", "TSModuleDeclaration"},
57 {"decorators", AstDumper::Optional(decorators_)},
58 {"id", name_},
59 {"body", AstDumper::Optional(body_)},
60 {"declare", declare_},
61 {"global", global_}});
62 }
63
Dump(ir::SrcDumper * dumper) const64 void TSModuleDeclaration::Dump(ir::SrcDumper *dumper) const
65 {
66 dumper->Add("TSModuleDeclaration");
67 }
68
Compile(compiler::PandaGen * pg) const69 void TSModuleDeclaration::Compile([[maybe_unused]] compiler::PandaGen *pg) const
70 {
71 pg->GetAstCompiler()->Compile(this);
72 }
73
Compile(compiler::ETSGen * etsg) const74 void TSModuleDeclaration::Compile(compiler::ETSGen *etsg) const
75 {
76 etsg->GetAstCompiler()->Compile(this);
77 }
78
Check(checker::TSChecker * checker)79 checker::Type *TSModuleDeclaration::Check([[maybe_unused]] checker::TSChecker *checker)
80 {
81 return checker->GetAnalyzer()->Check(this);
82 }
83
Check(checker::ETSChecker * checker)84 checker::Type *TSModuleDeclaration::Check([[maybe_unused]] checker::ETSChecker *checker)
85 {
86 return checker->GetAnalyzer()->Check(this);
87 }
88 } // namespace panda::es2panda::ir
89