OLD | NEW |
---|---|
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "test/cctest/compiler/function-tester.h" | 7 #include "test/cctest/compiler/function-tester.h" |
8 | 8 |
9 using namespace v8::internal; | 9 using namespace v8::internal; |
10 using namespace v8::internal::compiler; | 10 using namespace v8::internal::compiler; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
238 TEST(CallEval) { | 238 TEST(CallEval) { |
239 FunctionTester T( | 239 FunctionTester T( |
240 "var x = 42;" | 240 "var x = 42;" |
241 "(function () {" | 241 "(function () {" |
242 "function bar() { return eval('x') };" | 242 "function bar() { return eval('x') };" |
243 "return bar;" | 243 "return bar;" |
244 "})();"); | 244 "})();"); |
245 | 245 |
246 T.CheckCall(T.Val(42), T.Val("x"), T.undefined()); | 246 T.CheckCall(T.Val(42), T.Val("x"), T.undefined()); |
247 } | 247 } |
248 | |
249 #if V8_TURBOFAN_TARGET | |
250 | |
251 TEST(ContextLoadedFromActivation) { | |
252 const char* script = | |
253 "var x = 42;" | |
254 "(function() {" | |
255 " return function () { return x };" | |
256 "})()"; | |
257 | |
258 // Disable context specialization. | |
259 FunctionTester T(script, false); | |
260 T.CompileFunctionInSeparateContext( | |
261 script, | |
262 [&T](v8::Handle<v8::Context> context, Handle<JSFunction> function) { | |
sigurds
2014/08/21 09:14:14
Look at this beautiful lambda :)
I'll replace it w
| |
263 function->set_code(T.function->code()); | |
264 context->Global()->Set(v8_str("foo"), v8::Utils::ToLocal(function)); | |
265 CompileRun("var x = 24;"); | |
266 ExpectInt32("foo();", 24); | |
267 }); | |
268 } | |
269 | |
270 | |
271 TEST(BuiltinLoadedFromActivation) { | |
272 const char* script = | |
273 "var x = 42;" | |
274 "(function() {" | |
275 " return function () { return this; };" | |
276 "})()"; | |
277 | |
278 // Disable context specialization. | |
279 FunctionTester T(script, false); | |
280 T.CompileFunctionInSeparateContext( | |
281 script, | |
282 [&T](v8::Handle<v8::Context> context, Handle<JSFunction> function) { | |
283 function->set_code(T.function->code()); | |
284 context->Global()->Set(v8_str("foo"), v8::Utils::ToLocal(function)); | |
285 CompileRun("var x = 24;"); | |
286 ExpectObject("foo()", context->Global()); | |
287 }); | |
288 } | |
289 | |
290 #endif // V8_TURBO_TARGET | |
OLD | NEW |