Chromium Code Reviews| Index: test/cctest/interpreter/test-interpreter.cc |
| diff --git a/test/cctest/interpreter/test-interpreter.cc b/test/cctest/interpreter/test-interpreter.cc |
| index 3884a7c7531a973e6fffbc168563da3dca45c890..40c49961051bceee81043fbffdc49de6164780d6 100644 |
| --- a/test/cctest/interpreter/test-interpreter.cc |
| +++ b/test/cctest/interpreter/test-interpreter.cc |
| @@ -3549,6 +3549,83 @@ TEST(InterpreterEvalGlobal) { |
| } |
| } |
| + |
| +TEST(InterpreterEvalVariableDecl) { |
| + HandleAndZoneScope handles; |
| + i::Isolate* isolate = handles.main_isolate(); |
| + i::Factory* factory = isolate->factory(); |
| + |
| + std::pair<const char*, Handle<Object>> eval_global[] = { |
| + {"function f() { eval('var x = 10; x++;'); return x; }", |
| + handle(Smi::FromInt(11), isolate)}, |
| + {"function f() { var x = 20; eval('var x = 10; x++;'); return x; }", |
| + handle(Smi::FromInt(11), isolate)}, |
| + {"function f() {" |
| + " var x = 20;" |
| + " eval('\"use strict\"; var x = 10; x++;');" |
| + " return x; }", |
| + handle(Smi::FromInt(20), isolate)}, |
| + {"function f() {" |
| + " var y = 30;" |
| + " eval('var x = {1:20}; x[2]=y;');" |
| + " return x[2]; }", |
| + handle(Smi::FromInt(30), isolate)}, |
| + {"function f() {" |
| + " eval('var x = {name:\"test\"};');" |
| + " return x.name; }", |
| + factory->NewStringFromStaticChars("test")}, |
| + {"function f() {" |
| + " eval('var x = [{name:\"test\"}, {type:\"cc\"}];');" |
| + " return x[1].type+x[0].name; }", |
| + factory->NewStringFromStaticChars("cctest")}, |
| + // TODO(mythria): Add tests with const declarations. |
| + }; |
| + |
| + for (size_t i = 0; i < arraysize(eval_global); i++) { |
| + InterpreterTester tester(handles.main_isolate(), eval_global[i].first, "*"); |
| + auto callable = tester.GetCallable<>(); |
| + |
| + Handle<i::Object> return_value = callable().ToHandleChecked(); |
| + CHECK(return_value->SameValue(*eval_global[i].second)); |
| + } |
| +} |
| + |
| + |
| +TEST(InterpreterEvalFunctionDecl) { |
| + HandleAndZoneScope handles; |
| + i::Isolate* isolate = handles.main_isolate(); |
| + |
| + std::pair<const char*, Handle<Object>> eval_global[] = { |
| + {"function f() {\n" |
| + " var get_eval_x;\n" |
| + " var x = 3;\n" |
| + " eval('\"use strict\"; " |
| + " var x = 20; " |
| + " function func() {return x;}; " |
| + " get_eval_x = func;');\n" |
| + " return get_eval_x() + x;\n" |
| + "}", |
| + handle(Smi::FromInt(23), isolate)}, |
| + {"function f() {\n" |
| + " var get_x;\n" |
| + " var x = 3;\n" |
| + " eval('var x = 20;" |
| + " function func() {return x;};" |
| + " get_x = func;');\n" |
| + " return get_x() + x;\n" |
|
rmcilroy
2016/01/14 11:21:12
These are testing variable declarations (since you
mythria
2016/01/15 11:27:04
In strict mode, we cannot function declarations ev
|
| + "}", |
| + handle(Smi::FromInt(40), isolate)}, |
| + }; |
| + |
| + for (size_t i = 0; i < arraysize(eval_global); i++) { |
| + InterpreterTester tester(handles.main_isolate(), eval_global[i].first, "*"); |
| + auto callable = tester.GetCallable<>(); |
| + |
| + Handle<i::Object> return_value = callable().ToHandleChecked(); |
| + CHECK(return_value->SameValue(*eval_global[i].second)); |
| + } |
| +} |
| + |
| } // namespace interpreter |
| } // namespace internal |
| } // namespace v8 |