代码拉取完成,页面将自动刷新
同步操作将从 OpenHarmony-SIG/arkcompiler_ets_frontend 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/**
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ES2PANDA_PUBLIC_H
#define ES2PANDA_PUBLIC_H
#include <macros.h>
#include <string>
namespace panda::pandasm {
struct Program;
} // namespace panda::pandasm
namespace panda::es2panda {
namespace parser {
class ParserImpl;
} // namespace parser
namespace compiler {
class CompilerImpl;
} // namespace compiler
enum class ScriptExtension {
JS,
TS,
AS,
};
struct SourceFile {
SourceFile(std::string_view fn, std::string_view s) : fileName(fn), source(s) {};
SourceFile(std::string_view fn, std::string_view s, bool m) : fileName(fn), source(s), isModule(m) {};
std::string_view fileName {};
std::string_view source {};
bool isModule {false};
};
struct CompilerOptions {
bool isDebug {false};
bool dumpAst {false};
bool dumpAsm {false};
bool dumpDebugInfo {false};
bool parseOnly {false};
};
enum class ErrorType {
GENERIC,
SYNTAX,
TYPE,
};
class Error : public std::exception {
public:
Error() noexcept = default;
explicit Error(ErrorType type, std::string_view message) noexcept : type_(type), message_(message) {}
explicit Error(ErrorType type, std::string_view message, size_t line, size_t column) noexcept
: type_(type), message_(message), line_(line), col_(column)
{
}
~Error() override = default;
DEFAULT_COPY_SEMANTIC(Error);
DEFAULT_MOVE_SEMANTIC(Error);
ErrorType Type() const noexcept
{
return type_;
}
const char *TypeString() const noexcept
{
switch (type_) {
case ErrorType::SYNTAX:
return "SyntaxError";
case ErrorType::TYPE:
return "TypeError";
default:
break;
}
return "Error";
}
const char *what() const noexcept override
{
return message_.c_str();
}
int ErrorCode() const noexcept
{
return errorCode_;
}
const std::string &Message() const noexcept
{
return message_;
}
size_t Line() const
{
return line_;
}
size_t Col() const
{
return col_;
}
private:
ErrorType type_ {ErrorType::GENERIC};
std::string message_;
size_t line_ {};
size_t col_ {};
int errorCode_ {1};
};
class Compiler {
public:
explicit Compiler(ScriptExtension ext);
explicit Compiler(ScriptExtension ext, size_t threadCount);
~Compiler();
NO_COPY_SEMANTIC(Compiler);
NO_MOVE_SEMANTIC(Compiler);
panda::pandasm::Program *Compile(const SourceFile &input, const CompilerOptions &options);
inline panda::pandasm::Program *Compile(const SourceFile &input)
{
CompilerOptions options;
return Compile(input, options);
}
static void DumpAsm(const panda::pandasm::Program *prog);
const Error &GetError() const noexcept
{
return error_;
}
private:
parser::ParserImpl *parser_;
compiler::CompilerImpl *compiler_;
Error error_;
};
} // namespace panda::es2panda
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。