| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 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 | 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: --expose-wasm |
| 6 |
| 5 function Foo() { } | 7 function Foo() { } |
| 6 | 8 |
| 7 assertThrows(function() { WASM.verifyFunction(); }) | 9 assertThrows(function() { WASM.verifyFunction(); }) |
| 8 assertThrows(function() { WASM.verifyFunction(0); }) | 10 assertThrows(function() { WASM.verifyFunction(0); }) |
| 9 assertThrows(function() { WASM.verifyFunction("s"); }) | 11 assertThrows(function() { WASM.verifyFunction("s"); }) |
| 10 assertThrows(function() { WASM.verifyFunction(undefined); }) | 12 assertThrows(function() { WASM.verifyFunction(undefined); }) |
| 11 assertThrows(function() { WASM.verifyFunction(1.1); }) | 13 assertThrows(function() { WASM.verifyFunction(1.1); }) |
| 12 assertThrows(function() { WASM.verifyFunction(1/0); }) | 14 assertThrows(function() { WASM.verifyFunction(1/0); }) |
| 13 assertThrows(function() { WASM.verifyFunction(null); }) | 15 assertThrows(function() { WASM.verifyFunction(null); }) |
| 14 assertThrows(function() { WASM.verifyFunction(new Foo()); }) | 16 assertThrows(function() { WASM.verifyFunction(new Foo()); }) |
| 15 assertThrows(function() { WASM.verifyFunction(new ArrayBuffer(0)); }) | 17 assertThrows(function() { WASM.verifyFunction(new ArrayBuffer(0)); }) |
| 16 assertThrows(function() { WASM.verifyFunction(new ArrayBuffer(140000)); }) | 18 assertThrows(function() { WASM.verifyFunction(new ArrayBuffer(140000)); }) |
| OLD | NEW |