Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: test/mjsunit/lazy-inner-functions.js

Issue 2407163003: PreParser: track variable declarations and parameters (Closed)
Patch Set: test fixes + more tests Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/lazy-inner-functions.js
diff --git a/test/mjsunit/lazy-inner-functions.js b/test/mjsunit/lazy-inner-functions.js
index 3d8c448ce1976014728326d408327e8dc995f704..153a51a72c78ea0ed662d831dd91a6f2226091d0 100644
--- a/test/mjsunit/lazy-inner-functions.js
+++ b/test/mjsunit/lazy-inner-functions.js
@@ -2,11 +2,26 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+// Flags: --lazy-inner-functions
+
(function TestLazyInnerFunctionCallsEval() {
var i = (function eager_outer() {
- var a = 41; // Should be context-allocated
+ var outer_var = 41; // Should be context-allocated
+ function lazy_inner() {
+ return eval("outer_var");
+ }
+ return lazy_inner;
+ })();
+ assertEquals(41, i());
+})();
+
+(function TestLazyInnerFunctionDestructuring() {
+ var i = (function eager_outer() {
+ var outer_var = 41; // Should be context-allocated
function lazy_inner() {
- return eval("a");
+ // This introduces b and refers to outer_var.
+ var {outer_var : b} = {outer_var};
+ return b;
}
return lazy_inner;
})();
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698