OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 // | |
5 // Flags: --harmony-destructuring --harmony-computed-property-names | |
6 // Flags: --harmony-arrow-functions --strong-mode --allow-natives-syntax | |
7 | |
8 (function() { | |
9 function f({ x = function() { return []; } }) { "use strong"; return x(); } | |
10 var a = f({ x: undefined }); | |
11 assertTrue(%IsStrong(a)); | |
12 | |
13 // TODO(???): Loading non-existent properties during destructuring should not | |
rossberg
2015/07/16 15:06:18
You can put my name there
| |
14 // throw in strong mode. | |
15 assertThrows(function() { f({}); }, TypeError); | |
16 | |
17 function weakf({ x = function() { return []; } }) { return x(); } | |
18 a = weakf({}); | |
19 assertFalse(%IsStrong(a)); | |
20 | |
21 function outerf() { return []; } | |
22 function f2({ x = outerf }) { "use strong"; return x(); } | |
23 a = f2({ x: undefined }); | |
24 assertFalse(%IsStrong(a)); | |
25 })(); | |
OLD | NEW |