| Index: pkg/kernel/lib/binary/ast_from_binary.dart
|
| diff --git a/pkg/kernel/lib/binary/ast_from_binary.dart b/pkg/kernel/lib/binary/ast_from_binary.dart
|
| index 1be6b2aba8f0ad8c867250249becafff6c572864..3d556eb82bc75aead025532c4a3c49a00492c0ff 100644
|
| --- a/pkg/kernel/lib/binary/ast_from_binary.dart
|
| +++ b/pkg/kernel/lib/binary/ast_from_binary.dart
|
| @@ -470,6 +470,7 @@ class BinaryBuilder {
|
| }
|
| var name = readStringOrNullIfEmpty();
|
| var fileUri = readUriReference();
|
| + var documentationComment = readStringOrNullIfEmpty();
|
| var annotations = readAnnotationList(node);
|
| debugPath.add(node.name ?? 'normal-class');
|
| readAndPushTypeParameterList(node.typeParameters, node);
|
| @@ -488,6 +489,7 @@ class BinaryBuilder {
|
| if (shouldWriteData) {
|
| node.name = name;
|
| node.fileUri = fileUri;
|
| + node.documentationComment = documentationComment;
|
| node.annotations = annotations;
|
| node.supertype = supertype;
|
| node.mixedInType = mixedInType;
|
|
|