Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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: --validate-asm | |
| 6 | |
| 7 function __f_3() { | |
| 8 "use asm"; | |
| 9 function __f_15(__v_7) { | |
| 10 __v_7 = __v_7|0; | |
| 11 } | |
| 12 return {__f_15: __f_15}; | |
| 13 } | |
| 14 assertEquals(['__f_15'], Object.getOwnPropertyNames(__f_3())); | |
| OLD | NEW |