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

Unified Diff: pkg/front_end/lib/src/fasta/builder/member_builder.dart

Issue 2990873002: Add Member.documentationComment and use it to resynthesize documentation from Kernel. (Closed)
Patch Set: Created 3 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
Index: pkg/front_end/lib/src/fasta/builder/member_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/member_builder.dart b/pkg/front_end/lib/src/fasta/builder/member_builder.dart
index 0838145468efdc6721f537d919e13fdcebae6677..b45d3d741bec0ba308f6577a7b68b799195fc3d1 100644
--- a/pkg/front_end/lib/src/fasta/builder/member_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/member_builder.dart
@@ -13,9 +13,11 @@ abstract class MemberBuilder extends ModifierBuilder {
/// library and updated later.
Builder parent;
+ String documentationComment;
+
String get name;
- MemberBuilder(Builder parent, int charOffset)
+ MemberBuilder(Builder parent, int charOffset, this.documentationComment)
: parent = parent,
super(parent, charOffset);
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/field_builder.dart ('k') | pkg/front_end/lib/src/fasta/builder/procedure_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698