Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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: --always-opt --no-lazy | |
| 6 | |
| 7 function __f_38() { | |
| 8 try { | |
| 9 throw 0; | |
| 10 } catch (e) { | |
| 11 eval(); | |
| 12 var __v_38 = { a: 'hest' }; | |
| 13 __v_38.m = function () { return __v_38.a; }; | |
| 14 } | |
| 15 return __v_38; | |
| 16 } | |
| 17 var __v_40 = __f_38(); | |
| 18 __v_40.m(); | |
| OLD | NEW |