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

Unified Diff: runtime/vm/parser.cc

Issue 1533823004: Fix owner of mixin forwarding constructors (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years 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 | « runtime/vm/class_finalizer.cc ('k') | tests/language/language_analyzer2.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.cc
diff --git a/runtime/vm/parser.cc b/runtime/vm/parser.cc
index 15393a0d0b41b74017becaeb4d9af45f9354077c..09dab6cfb548cb1423f67b9de9b0e02d6b14ebf3 100644
--- a/runtime/vm/parser.cc
+++ b/runtime/vm/parser.cc
@@ -2581,8 +2581,7 @@ AstNode* Parser::ParseExternalInitializedField(const Field& field) {
set_current_class(Class::Handle(Z, field.origin()));
set_library(Library::Handle(Z, current_class().library()));
- SetScript(Script::Handle(Z, current_class().script()),
- field.token_pos());
+ SetScript(Script::Handle(Z, current_class().script()), field.token_pos());
ASSERT(IsIdentifier());
ConsumeToken();
« no previous file with comments | « runtime/vm/class_finalizer.cc ('k') | tests/language/language_analyzer2.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698