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

Side by Side Diff: lib/src/dart_options.pb.dart

Issue 2043913005: Change how to set the Dart name of a field (Closed) Base URL: git@github.com:dart-lang/dart-protoc-plugin.git@master
Patch Set: better error checking, clean up pubspec Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 /// 1 ///
2 // Generated code. Do not modify. 2 // Generated code. Do not modify.
3 /// 3 ///
4 library dart_options; 4 library dart_options_dart_options;
5 5
6 import 'package:protobuf/protobuf.dart'; 6 import 'package:protobuf/protobuf.dart';
7 7
8 class Dart_options { 8 class Dart_options {
9 static final Extension defaultMixin = new Extension('FileOptions', 'defaultMix in', 96128839, PbFieldType.OS); 9 static final Extension defaultMixin = new Extension<String>('FileOptions', 'de faultMixin', 96128839, PbFieldType.OS);
10 static final Extension mixin = new Extension('MessageOptions', 'mixin', 961288 39, PbFieldType.OS); 10 static final Extension mixin = new Extension<String>('MessageOptions', 'mixin' , 96128839, PbFieldType.OS);
11 static final Extension dartName = new Extension<String>('FieldOptions', 'dartN ame', 28700919, PbFieldType.OS);
11 static void registerAllExtensions(ExtensionRegistry registry) { 12 static void registerAllExtensions(ExtensionRegistry registry) {
12 registry.add(defaultMixin); 13 registry.add(defaultMixin);
13 registry.add(mixin); 14 registry.add(mixin);
15 registry.add(dartName);
14 } 16 }
15 } 17 }
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698