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

Unified Diff: dart/frog/leg/lib/js_helper.dart

Issue 9835088: Handle implicit closure of toString. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add missing "new" Created 8 years, 9 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 | dart/tests/co19/co19-leg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/leg/lib/js_helper.dart
diff --git a/dart/frog/leg/lib/js_helper.dart b/dart/frog/leg/lib/js_helper.dart
index ca78471a909b3163ed3598c2f1b89b0d453dd6d8..b03ecf42f27a2cde14eb3e24070a02f09a680e02 100644
--- a/dart/frog/leg/lib/js_helper.dart
+++ b/dart/frog/leg/lib/js_helper.dart
@@ -1360,6 +1360,9 @@ interface Dynamic {
*/
class Null {
factory Null() {
- throw UnsupportedOperationException('new Null()');
+ throw new UnsupportedOperationException('new Null()');
}
}
+
+// TODO(ahe): We should automatically generate these.
ngeoffray 2012/03/26 08:47:32 Just talked with Lasse about this. It's not so tri
ahe 2012/03/26 09:24:57 I have removed the TODO for now and continued the
+builtin$get$toString(receiver) => () => builtin$toString$0(receiver);
« no previous file with comments | « no previous file | dart/tests/co19/co19-leg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698