Kaido Kert | f309f9a | 2021-04-30 12:09:15 -0700 | [diff] [blame] | 1 | // Copyright 2020 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 | // These statements might come from a CrashTest. |
| 6 | print("v8-foozzie source: some/file/name"); |
| 7 | print('v8-foozzie source: some/file/name'); |
| 8 | |
| 9 | function foo(__v_0) { |
| 10 | // This is an unsupported language feature. |
| 11 | return 1 in foo.arguments; |
| 12 | } |
| 13 | |
| 14 | // This leads to precision differences in optimized code. |
| 15 | print(192 ** -0.5); |