aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc
Commit message (Collapse)AuthorAge
* C# code generation changes to use bitwise comparisons for doublesGravatar Jon Skeet2017-12-09
|
* Fix merging with message-valued oneofGravatar Jon Skeet2017-10-31
| | | | | | | | | | If messages A and B have the same oneof case, which is a message type, and we merge B into A, those sub-messages should be merged. Fixes #3200. Note that I haven't regenerated all the code, as some of the protos have been changed, breaking generation.
* Move DebuggerNonUserCodeAttribute to function membersGravatar Jon Skeet2016-07-04
| | | | | | | | | I think this has caught everything. I've left a stub for attributes to be applied to the types themselves, but we don't currently need anything. Follow-up commit will include the changes to generated code itself. Fixes #1671.
* Added access_level for typesGravatar Gaurav Vaish2016-04-05
| | | | | | | | | | | * `csharp_options`: Added `Options` to encapsulate generator options. Supported options for now - file_extension, base_namespace * `{Blah}Generator`: Now accept `Options*` as parameter to constructor * `csharp_generator.cc`: Parse and populate options * `Makefile.am`: Added `csharp_options.h` * `extract_includes.bat.in`: Added `csharp_options.h` Refactoring code to two commits. This is the first commit
* Rename Preconditions to ProtoPreconditionsGravatar Jon Skeet2016-02-04
| | | | (Generated code changes in next commit.)
* First pass at generating XML documentation from .proto comments.Gravatar Jon Skeet2015-10-01
| | | | | | This could be tidied up significantly, and at some point we will want to parse the markdown and generate more appropriate XML - but this is definitely better than nothing. Generated code changes coming in next commit.
* Prohibit null values for string/bytes fields in generated code.Gravatar Jon Skeet2015-07-30
|
* remove the freeze APIGravatar Jan Tattermusch2015-07-29
|
* Codegen changes to support descriptor runtime changesGravatar Jon Skeet2015-07-09
| | | | | | - Add a partial method called by all constructors - Generate internal classes for descriptor.proto (only) - Forbid proto2 descriptors except for descriptor.proto
* First pass at map support.Gravatar Jon Skeet2015-06-25
| | | | More tests required. Generated code in next commit.
* Implement freezing for messages and repeated fields.Gravatar Jon Skeet2015-06-24
| | | | Fixes issue #523.
* Implement Clone.Gravatar Jon Skeet2015-06-23
| | | | Fixes issue #527.
* Use the fact that we know the tag size and bytes at codegen time to optimize.Gravatar Jon Skeet2015-06-17
|
* Fix oneof generator - forgot to provide variables...Gravatar Jon Skeet2015-06-12
|
* Use Length to check string/bytes fields for emptiness - it's faster than an ↵Gravatar Jon Skeet2015-06-12
| | | | equality check.
* Fix oneof behaviour in the face of default values.Gravatar Jon Skeet2015-06-12
|
* Coded*Stream streamlining.Gravatar Jon Skeet2015-06-12
| | | | Remove ICodedInputStream and ICodedOutputStream, and rewrite CodedInputStream and CodedOutputStream to be specific to the binary format. If we want to support text-based formats, that can be a whole different serialization mechanism.
* First pass at the mutable API. Quite a bit more to do - in particular, it's ↵Gravatar Jon Skeet2015-06-09
| | | | pretty slow right now.
* First stab at new proto3-only code generatorGravatar Jon Skeet2015-06-05
|
* Migrate writer to io::Printer for C#Gravatar Jie Luo2015-06-04
|
* Add oneof support for C#Gravatar Jie Luo2015-05-29
|
* fix bug for Field PresenceGravatar Jie Luo2015-04-27
|
* Field Presence: remove has methods for optional non-message fields in proto3Gravatar Jie Luo2015-04-27
|
* Rewrote C# protogen to C++ (initial version)Gravatar Jan Tattermusch2015-03-26