1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_8/extensions/expclo2.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 1.5 +/* 1.6 + * Any copyright is dedicated to the Public Domain. 1.7 + * http://creativecommons.org/licenses/publicdomain/ 1.8 + * Contributor: Brendan Eich 1.9 + */ 1.10 + 1.11 +var summary = "Partial flat expression closure upvar order test"; 1.12 + 1.13 +function f(a) { 1.14 + if (a) { 1.15 + let b = 42; 1.16 + let c = function () b+a; 1.17 + ++b; 1.18 + return c; 1.19 + } 1.20 + return null; 1.21 +} 1.22 + 1.23 +var expect = 44; 1.24 +var actual = f(1)(); 1.25 + 1.26 +reportCompare(expect, actual, summary);