1 /**
2 * Copyright (c) 2021 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 "stringLiteral.h"
17
18 #include <compiler/core/pandagen.h>
19 #include <typescript/checker.h>
20 #include <ir/astDump.h>
21
22 #include <utility>
23
24 namespace panda::es2panda::ir {
25
Iterate(const NodeTraverser & cb) const26 void StringLiteral::Iterate([[maybe_unused]] const NodeTraverser &cb) const {}
27
Dump(ir::AstDumper * dumper) const28 void StringLiteral::Dump(ir::AstDumper *dumper) const
29 {
30 dumper->Add({{"type", "StringLiteral"}, {"value", str_}});
31 }
32
Compile(compiler::PandaGen * pg) const33 void StringLiteral::Compile(compiler::PandaGen *pg) const
34 {
35 pg->LoadAccumulatorString(this, str_);
36 }
37
Check(checker::Checker * checker) const38 checker::Type *StringLiteral::Check(checker::Checker *checker) const
39 {
40 auto search = checker->StringLiteralMap().find(str_);
41 if (search != checker->StringLiteralMap().end()) {
42 return search->second;
43 }
44
45 auto *newStrLiteralType = checker->Allocator()->New<checker::StringLiteralType>(str_);
46 checker->StringLiteralMap().insert({str_, newStrLiteralType});
47
48 return newStrLiteralType;
49 }
50
UpdateSelf(const NodeUpdater & cb,binder::Binder * binder)51 void StringLiteral::UpdateSelf([[maybe_unused]] const NodeUpdater &cb, [[maybe_unused]] binder::Binder *binder) {}
52
53 } // namespace panda::es2panda::ir
54