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

Unified Diff: lib/protoc.dart

Issue 2086253002: Allow application of external mixins to generated dart protos. (Closed) Base URL: https://github.com/dart-lang/dart-protoc-plugin.git@master
Patch Set: Add support for mixins in protos. 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 side-by-side diff with in-line comments
Download patch
Index: lib/protoc.dart
diff --git a/lib/protoc.dart b/lib/protoc.dart
index f8fde96f0341efd7cb3369d6b0a542006cd30e07..94cb3330f74a1e711b4b7c09df40b6b0a47fb697 100644
--- a/lib/protoc.dart
+++ b/lib/protoc.dart
@@ -3,17 +3,17 @@ library protoc;
import 'dart:async';
import 'dart:io';
-import 'package:protobuf/protobuf.dart';
import 'package:protobuf/mixins_meta.dart';
+import 'package:protobuf/protobuf.dart';
import 'package:path/path.dart' as path;
+import 'src/dart_options.pb.dart';
import 'src/descriptor.pb.dart';
import 'src/plugin.pb.dart';
-import 'src/dart_options.pb.dart';
import 'const_generator.dart' show writeJsonConst;
-import 'names.dart';
import 'indenting_writer.dart' show IndentingWriter;
+import 'names.dart';
part 'base_type.dart';
part 'client_generator.dart';

Powered by Google App Engine
This is Rietveld 408576698