Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: test/mjsunit/regress/wasm/regress-712569.js

Issue 2825073002: [wasm] Fix DCHECK handiling pending exceptions. (Closed)
Patch Set: formatting Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/wasm/wasm-js.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
6 var v11 = {};
7 Object.defineProperty(v11.__proto__, 0, {
8 get: function() {
9 },
10 set: function() {
11 try {
12 WebAssembly.instantiate();
13 v11[0] = 0;
14 } catch (e) {
15 assertTrue(e instanceof RangeError);
16 }
17 }
18 });
19 v66 = new Array();
20 cv = v66; cv[0] = 0.1; cv[2] = 0.2;
OLDNEW
« no previous file with comments | « src/wasm/wasm-js.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698