1. 14 Jul, 2016 3 commits
  2. 11 May, 2016 1 commit
  3. 03 Nov, 2015 1 commit
    • Jon Skeet's avatar
      Implement JSON parsing in C#. · fb248822
      Jon Skeet authored
      This includes all the well-known types except Any.
      Some aspects are likely to require further work when the details of the JSON parsing expectations are hammered out in more detail. Some of these have "ignored" tests already.
      
      Note that the choice *not* to use Json.NET was made for two reasons:
      - Going from 0 dependencies to 1 dependency is a big hit, and there's not much benefit here
      - Json.NET parses more leniently than we'd want; accommodating that would be nearly as much work as writing the tokenizer
      This only really affects the JsonTokenizer, which could be replaced by Json.NET. The JsonParser code would be about the same length with Json.NET... but I wouldn't be as confident in it.
      fb248822
  4. 03 Aug, 2015 1 commit
  5. 02 Aug, 2015 2 commits
  6. 17 Jul, 2015 1 commit
  7. 30 Jun, 2015 2 commits
    • Jon Skeet's avatar
      Fix copyright lines for all C# code. · ee835a3f
      Jon Skeet authored
      Everything should now be consistent - the only difference between files is the year (aside from generated files).
      
      Fixes issue #531.
      ee835a3f
    • Jon Skeet's avatar
      Tidying up and extra tests. · f34d37a3
      Jon Skeet authored
      This is mostly just making things internal instead of public, removing and reordering a bunch of code in CodedInputStream/CodedOutputStream, and generally tidying up.
      f34d37a3
  8. 29 Apr, 2015 2 commits