This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Modify dart_options support so that it supports alternate mixins. - Move the experimental map implementation to PbMapMixin For now, new mixins can only be added using a patch: - add the new class to the protobuf library - add the class to the list in mixin.dart. [email protected], [email protected] Review URL: https://chromiumcodereview.appspot.com//1192943003
- Loading branch information
Brian Slesinsky
committed
Jun 23, 2015
1 parent
e750443
commit 8195898
Showing
11 changed files
with
111 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/// | ||
// Generated code. Do not modify. | ||
/// | ||
library dart_options; | ||
|
||
import 'package:fixnum/fixnum.dart'; | ||
import 'package:protobuf/protobuf.dart'; | ||
|
||
class Dart_options { | ||
static final Extension defaultMixin = new Extension('FileOptions', 'defaultMixin', 96128839, GeneratedMessage.OS); | ||
static final Extension mixin = new Extension('MessageOptions', 'mixin', 96128839, GeneratedMessage.OS); | ||
static void registerAllExtensions(ExtensionRegistry registry) { | ||
registry.add(defaultMixin); | ||
registry.add(mixin); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: protoc_plugin | ||
version: 0.3.8 | ||
version: 0.3.9 | ||
author: Dart Team <[email protected]> | ||
description: Protoc compiler plugin to generate Dart code | ||
homepage: https://github.com/dart-lang/dart-protoc-plugin | ||
environment: | ||
sdk: '>=1.0.0 <2.0.0' | ||
dependencies: | ||
protobuf: '>=0.3.6 <0.4.0' | ||
protobuf: '>=0.3.9 <0.4.0' | ||
path: '>=1.0.0 <2.0.0' | ||
dev_dependencies: | ||
unittest: '>=0.9.0 <0.11.0' |
Oops, something went wrong.