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 // Flags: --allow-natives-syntax | 5 // Flags: --allow-natives-syntax |
6 | 6 |
7 function f() {}; | 7 function foo(a, c){ |
8 int_array = [1]; | 8 for(var f in c) { |
9 if ("object" === typeof c[f]) { | |
10 a[f]=c[f]; | |
Jakob Kummerow
2014/05/07 16:16:09
nit: spaces around '=' (and ',' in the next line).
| |
11 foo(a[f],c[f]); | |
12 } | |
13 } | |
14 }; | |
9 | 15 |
10 function foo() { | 16 c = { |
11 var x; | 17 "one" : { x : 1}, |
12 for (var i = -1; i < 0; i++) { | 18 "two" : { x : 2}, |
13 x = int_array[i + 1]; | 19 "thr" : { x : 3, z : 4}, |
14 f(function() { x = i; }); | 20 }; |
15 } | |
16 } | |
17 | 21 |
18 foo(); | 22 foo({}, c); |
23 foo({}, c); | |
19 %OptimizeFunctionOnNextCall(foo); | 24 %OptimizeFunctionOnNextCall(foo); |
20 foo(); | 25 foo({}, c); |
OLD | NEW |