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

Unified Diff: compiler/lib/implementation/core.dart

Issue 8276014: Update assert to follow the spec. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 2 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
Index: compiler/lib/implementation/core.dart
===================================================================
--- compiler/lib/implementation/core.dart (revision 409)
+++ compiler/lib/implementation/core.dart (working copy)
@@ -40,6 +40,10 @@
static TypeError createTypeError(String srcType, String dstType) native {
return new TypeError(srcType, dstType);
}
+
+ static AssertionError createAssertionError() native {
+ return new AssertionError();
+ }
}
class _CoreJsUtil {

Powered by Google App Engine
This is Rietveld 408576698