From b906e0e66c7316fdaba7dfddbaf837f9552b001b Mon Sep 17 00:00:00 2001 From: IlyaShurupov Date: Thu, 7 Mar 2024 09:46:17 +0300 Subject: [PATCH] tmp --- Objects/tests/TestInterpreter.cpp | 2 +- Objects/tests/Tests.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Objects/tests/TestInterpreter.cpp b/Objects/tests/TestInterpreter.cpp index a218f05..2e0dc42 100644 --- a/Objects/tests/TestInterpreter.cpp +++ b/Objects/tests/TestInterpreter.cpp @@ -41,7 +41,7 @@ if (i == 10) { )"; auto script = R"( - var i = 10; + var i = false; print i; )"; diff --git a/Objects/tests/Tests.cpp b/Objects/tests/Tests.cpp index 80e1230..d5bcbcd 100644 --- a/Objects/tests/Tests.cpp +++ b/Objects/tests/Tests.cpp @@ -18,10 +18,10 @@ int main() { if (module.initialize()) { - testParser(); + // testParser(); // testCore(); // testPrimitives(); - // testInterpreter(); + testInterpreter(); module.deinitialize(); }