regress-452498-082.js (889B)
1 // |reftest| skip-if(!this.uneval) 2 3 /* -*- tab-width: 2; indent-tabs-mode: nil; js-indent-level: 2 -*- */ 4 /* This Source Code Form is subject to the terms of the Mozilla Public 5 * License, v. 2.0. If a copy of the MPL was not distributed with this 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 7 8 //----------------------------------------------------------------------------- 9 var BUGNUMBER = 452498; 10 var summary = 'TM: upvar2 regression tests'; 11 var actual = ''; 12 var expect = ''; 13 14 15 //----------------------------------------------------------------------------- 16 test(); 17 //----------------------------------------------------------------------------- 18 19 function test() 20 { 21 printBugNumber(BUGNUMBER); 22 printStatus (summary); 23 24 // ------- Comment #82 From Gary Kwong [:nth10sd] 25 26 // ===== 27 28 uneval(function(){[y] = [x];}); 29 30 // ===== 31 32 reportCompare(expect, actual, summary); 33 }