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

Unified Diff: runtime/vm/parser.cc

Issue 10820064: Fix issue 977 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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 | tests/co19/co19-runtime.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.cc
===================================================================
--- runtime/vm/parser.cc (revision 9992)
+++ runtime/vm/parser.cc (working copy)
@@ -2398,6 +2398,10 @@
ErrorMsg(method->name_pos,
"function body not allowed in interface declaration");
}
+ if (method->redirect_name != NULL) {
+ ErrorMsg(method->name_pos,
+ "Constructor with redirection may not have function body");
cshapiro 2012/07/27 23:17:12 This might read better with the indefinite article
+ }
if (CurrentToken() == Token::kLBRACE) {
SkipBlock();
} else {
@@ -2419,6 +2423,10 @@
"const constructor '%s' may not have function body",
method->name->ToCString());
}
+ if (method->redirect_name != NULL) {
+ ErrorMsg(method->name_pos,
+ "Constructor with redirection may not have function body");
cshapiro 2012/07/27 23:17:12 ditto
+ }
ParseNativeDeclaration();
} else if (CurrentToken() == Token::kSEMICOLON) {
if (members->is_interface() ||
« no previous file with comments | « no previous file | tests/co19/co19-runtime.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698