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

Unified Diff: runtime/lib/errors_patch.dart

Issue 1690903003: Remove support for Javascript warnings in the VM. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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 | runtime/lib/identical.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/errors_patch.dart
diff --git a/runtime/lib/errors_patch.dart b/runtime/lib/errors_patch.dart
index 59a61ec4bb9238f98da38db0bd605b63a7c3c224..0165ed9d83bf3ec4f1885b7124e8bee263488423 100644
--- a/runtime/lib/errors_patch.dart
+++ b/runtime/lib/errors_patch.dart
@@ -362,18 +362,3 @@ patch class NoSuchMethodError {
return msg_buf.toString();
}
}
-
-class _JavascriptIntegerOverflowError extends Error {
- final Object _value;
-
- _JavascriptIntegerOverflowError(this._value);
- String toString() => "Javascript Integer Overflow: $_value";
-}
-
-class _JavascriptCompatibilityError extends Error {
- final String _msg;
-
- _JavascriptCompatibilityError(this._msg);
- String toString() => "Javascript Compatibility Error: $_msg";
-}
-
« no previous file with comments | « no previous file | runtime/lib/identical.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698