From 5fb4558474c296eb7aac23e8097bf6835446f571 Mon Sep 17 00:00:00 2001 From: Ilya Trubachev Date: Fri, 13 Oct 2023 16:17:02 +0300 Subject: [PATCH] mode es2panda to tools Signed-off-by: Ilya Trubachev --- .gitignore | 1 - runtime/js_eval.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cf09da225..de4d1f007 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ dist node_modules -es2panda diff --git a/runtime/js_eval.cpp b/runtime/js_eval.cpp index 9519011e3..73e3c5c4d 100644 --- a/runtime/js_eval.cpp +++ b/runtime/js_eval.cpp @@ -19,7 +19,7 @@ #include "plugins/ecmascript/runtime/base/builtins_base.h" #include "plugins/ecmascript/runtime/internal_call_params.h" #include "plugins/ecmascript/runtime/interpreter/interpreter-inl.h" -#include "plugins/ecmascript/es2panda/es2panda.h" // TODO(vpukhov): adjust es2panda path +#include "es2panda.h" #include "assembler/assembly-emitter.h" namespace panda::ecmascript { -- Gitee