| OLD | NEW |
| 1 /// | 1 /// |
| 2 // Generated code. Do not modify. | 2 // Generated code. Do not modify. |
| 3 /// | 3 /// |
| 4 library Descriptor.pb; | 4 library proto2; |
| 5 | 5 |
| 6 import 'dart:typed_data'; | 6 import 'dart:typed_data'; |
| 7 | 7 |
| 8 import 'package:fixnum/fixnum.dart'; |
| 8 import 'package:protobuf/protobuf.dart'; | 9 import 'package:protobuf/protobuf.dart'; |
| 9 | 10 |
| 10 class FileDescriptorSet extends GeneratedMessage { | 11 class FileDescriptorSet extends GeneratedMessage { |
| 11 static final BuilderInfo _i = new BuilderInfo('FileDescriptorSet') | 12 static final BuilderInfo _i = new BuilderInfo('FileDescriptorSet') |
| 12 ..m(1, 'file', () => new FileDescriptorProto(), () => new PbList<FileDescrip
torProto>()) | 13 ..m(1, 'file', () => new FileDescriptorProto(), () => new PbList<FileDescrip
torProto>()) |
| 13 ; | 14 ; |
| 14 | 15 |
| 15 FileDescriptorSet() : super(); | 16 FileDescriptorSet() : super(); |
| 16 FileDescriptorSet.fromBuffer(List<int> i, [ExtensionRegistry r = ExtensionRegi
stry.EMPTY]) : super.fromBuffer(i, r); | 17 FileDescriptorSet.fromBuffer(List<int> i, [ExtensionRegistry r = ExtensionRegi
stry.EMPTY]) : super.fromBuffer(i, r); |
| 17 FileDescriptorSet.fromJson(String i, [ExtensionRegistry r = ExtensionRegistry.
EMPTY]) : super.fromJson(i, r); | 18 FileDescriptorSet.fromJson(String i, [ExtensionRegistry r = ExtensionRegistry.
EMPTY]) : super.fromJson(i, r); |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 UninterpretedOption clone() => new UninterpretedOption()..mergeFromMessage(thi
s); | 703 UninterpretedOption clone() => new UninterpretedOption()..mergeFromMessage(thi
s); |
| 703 BuilderInfo get info_ => _i; | 704 BuilderInfo get info_ => _i; |
| 704 | 705 |
| 705 List<UninterpretedOption_NamePart> get name => getField(2); | 706 List<UninterpretedOption_NamePart> get name => getField(2); |
| 706 | 707 |
| 707 String get identifierValue => getField(3); | 708 String get identifierValue => getField(3); |
| 708 void set identifierValue(String v) { setField(3, v); } | 709 void set identifierValue(String v) { setField(3, v); } |
| 709 bool hasIdentifierValue() => hasField(3); | 710 bool hasIdentifierValue() => hasField(3); |
| 710 void clearIdentifierValue() => clearField(3); | 711 void clearIdentifierValue() => clearField(3); |
| 711 | 712 |
| 712 ByteData get positiveIntValue => getField(4); | 713 Int64 get positiveIntValue => getField(4); |
| 713 void set positiveIntValue(ByteData v) { setField(4, v); } | 714 void set positiveIntValue(Int64 v) { setField(4, v); } |
| 714 bool hasPositiveIntValue() => hasField(4); | 715 bool hasPositiveIntValue() => hasField(4); |
| 715 void clearPositiveIntValue() => clearField(4); | 716 void clearPositiveIntValue() => clearField(4); |
| 716 | 717 |
| 717 ByteData get negativeIntValue => getField(5); | 718 Int64 get negativeIntValue => getField(5); |
| 718 void set negativeIntValue(ByteData v) { setField(5, v); } | 719 void set negativeIntValue(Int64 v) { setField(5, v); } |
| 719 bool hasNegativeIntValue() => hasField(5); | 720 bool hasNegativeIntValue() => hasField(5); |
| 720 void clearNegativeIntValue() => clearField(5); | 721 void clearNegativeIntValue() => clearField(5); |
| 721 | 722 |
| 722 double get doubleValue => getField(6); | 723 double get doubleValue => getField(6); |
| 723 void set doubleValue(double v) { setField(6, v); } | 724 void set doubleValue(double v) { setField(6, v); } |
| 724 bool hasDoubleValue() => hasField(6); | 725 bool hasDoubleValue() => hasField(6); |
| 725 void clearDoubleValue() => clearField(6); | 726 void clearDoubleValue() => clearField(6); |
| 726 | 727 |
| 727 List<int> get stringValue => getField(7); | 728 List<int> get stringValue => getField(7); |
| 728 void set stringValue(List<int> v) { setField(7, v); } | 729 void set stringValue(List<int> v) { setField(7, v); } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 | 762 |
| 762 SourceCodeInfo() : super(); | 763 SourceCodeInfo() : super(); |
| 763 SourceCodeInfo.fromBuffer(List<int> i, [ExtensionRegistry r = ExtensionRegistr
y.EMPTY]) : super.fromBuffer(i, r); | 764 SourceCodeInfo.fromBuffer(List<int> i, [ExtensionRegistry r = ExtensionRegistr
y.EMPTY]) : super.fromBuffer(i, r); |
| 764 SourceCodeInfo.fromJson(String i, [ExtensionRegistry r = ExtensionRegistry.EMP
TY]) : super.fromJson(i, r); | 765 SourceCodeInfo.fromJson(String i, [ExtensionRegistry r = ExtensionRegistry.EMP
TY]) : super.fromJson(i, r); |
| 765 SourceCodeInfo clone() => new SourceCodeInfo()..mergeFromMessage(this); | 766 SourceCodeInfo clone() => new SourceCodeInfo()..mergeFromMessage(this); |
| 766 BuilderInfo get info_ => _i; | 767 BuilderInfo get info_ => _i; |
| 767 | 768 |
| 768 List<SourceCodeInfo_Location> get location => getField(1); | 769 List<SourceCodeInfo_Location> get location => getField(1); |
| 769 } | 770 } |
| 770 | 771 |
| OLD | NEW |