1. 08 Nov, 2018 1 commit
    • Dave MacLachlan's avatar
      Fix bugs in our keyword conversion support for objectivec · be83b29b
      Dave MacLachlan authored
      We have code for converting C/C++/Objc keywords that appear in protos
      to convert them so that they can be compiled.
      One of the things we need to be careful of is accidentally overriding methods
      that Apple declares in NSObject. It turns out that we have run into issues
      where we conflict with "hidden" methods in NSObject or methods added by
      categories. method_dump.sh collects all of the methods we care about for
      macOS and iOS and dumps them into objectivec_nsobject_methods.h which
      is then included in objectivec_helpers.cc as part of the build.
      
      Added a pile of tests to verify that conversions are happening as expected.
      be83b29b
  2. 06 Nov, 2018 3 commits
  3. 05 Nov, 2018 1 commit
  4. 04 Nov, 2018 1 commit
  5. 02 Nov, 2018 1 commit
    • Thomas Van Lenten's avatar
      Let the 9.4 migrator migrate the Swift source. · eecccdc8
      Thomas Van Lenten authored
      No changes were needed, but since the Xcode projects pick up the updated
      setting, the tests require a newer Xcode that supports Swift 4.
      
      This is being done because Xcode 10 starting warning about Swift 3 support
      going away in the future, so we might as well do the updates since most
      folks shouldn't be on those really old Xcode versions any more.
      eecccdc8
  6. 01 Nov, 2018 3 commits
  7. 31 Oct, 2018 1 commit
  8. 29 Oct, 2018 3 commits
  9. 23 Oct, 2018 3 commits
  10. 22 Oct, 2018 3 commits
  11. 18 Oct, 2018 2 commits
  12. 17 Oct, 2018 1 commit
  13. 16 Oct, 2018 2 commits
  14. 15 Oct, 2018 3 commits
  15. 13 Oct, 2018 1 commit
  16. 12 Oct, 2018 2 commits
  17. 11 Oct, 2018 2 commits
  18. 10 Oct, 2018 2 commits
  19. 08 Oct, 2018 4 commits
  20. 07 Oct, 2018 1 commit
    • michaelbausor's avatar
      PHP: Add support for primitive types in setters (#5126) · 6a51c038
      michaelbausor authored
      * Add support for primitive types in setters
      
      * Update to address PR feedback
      
      * Add tests and fixes for repeated fields
      
      * Remove repeated field code, add getters
      
      * Cleanup, test getters and oneofs
      
      * Move boxing logic into separate class
      
      * Add tests for wrapper type constructor args
      
      * Update to add new setXXXValue methods
      
      * Fix tests for invalid values
      
      * Fix c extension for wrapper accessors
      
      * Fix the bug that well known types didn't call Message_construct
      
      * Address PR comments
      
      * Refactoring init message with array logic
      
      * Add include path to protoc
      
      * Add missing TSRM_LS defintion
      
      * Fix TSRM_LS
      
      * Fix dist check
      6a51c038