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

Unified Diff: test/mjsunit/mjsunit.js

Issue 1903293002: Revert of [wasm] Also test structured stack trace (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-throw-error
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/mjsunit/wasm/stack.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/mjsunit.js
diff --git a/test/mjsunit/mjsunit.js b/test/mjsunit/mjsunit.js
index 6a7c2da9e47d1ca56b52c98b3afbd2a2b6d72b6c..9b07953c8aa22a24cd1386e1f212027dab0c7e2f 100644
--- a/test/mjsunit/mjsunit.js
+++ b/test/mjsunit/mjsunit.js
@@ -113,9 +113,6 @@
// Only works with --allow-natives-syntax.
var assertOptimized;
var assertUnoptimized;
-
-// Assert that a string contains another expected substring.
-var assertContains;
(function () { // Scope for utility functions.
@@ -419,12 +416,6 @@
throw new MjsUnitAssertionError(message);
};
- assertContains = function(sub, value, name_opt) {
- if (value == null ? (sub != null) : value.indexOf(sub) == -1) {
- fail("contains '" + String(sub) + "'", value, name_opt);
- }
- };
-
var OptimizationStatusImpl = undefined;
var OptimizationStatus = function(fun, sync_opt) {
« no previous file with comments | « no previous file | test/mjsunit/wasm/stack.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698