Skip to content
  1. Aug 23, 2012
  2. Aug 22, 2012
  3. Aug 21, 2012
  4. Aug 17, 2012
    • Rene Saarsoo's avatar
      Replace #default_members_hash with #each_member_type. · 89c58bea
      Rene Saarsoo authored
      The hash is no more needed, we only need to loop through all the types.
      89c58bea
    • Rene Saarsoo's avatar
      9be8019a
    • Rene Saarsoo's avatar
      Use the :local option in statics in singleton check. · 13cec37f
      Rene Saarsoo authored
      We don't care about static members inherited from parents and mixins -
      they could be completely valid in those other classes - it's the
      concrete singleton who's statics interest us.
      13cec37f
    • Rene Saarsoo's avatar
      Add :local query option to #find_members. · 0438e62e
      Rene Saarsoo authored
      Allowing to filter out just local (non-inherited) members.
      0438e62e
    • Rene Saarsoo's avatar
      Reuse a helper function accross many specs. · f6d4381b
      Rene Saarsoo authored
      f6d4381b
    • Rene Saarsoo's avatar
      Reorder and document #find_members related methods. · f9ab7688
      Rene Saarsoo authored
      Remove new_* prefixes from map-generator methods.
      f9ab7688
    • Rene Saarsoo's avatar
      Remove #to_hash and #to_json methods from Class. · f60d225f
      Rene Saarsoo authored
      The #to_json wasn't used at all.
      
      The #to_hash was only used by FullExporter where it could be replaced by
      doing the cloning right in there.
      f60d225f
    • Rene Saarsoo's avatar
      Take the new JsDuck::Class#find_members into use. · 81ebeea8
      Rene Saarsoo authored
      Discard JsDuck::Class methods:
      
      - members
      - constructor_first
      - members_hash
      - local_members_hash
      - get_members
      - all_members
      - reset_members_lookup!
      
      The new #find_members replaces most of them.
      
      Moved sorting and ordering of constructor into FullExporter,
      so the #constructor_first method still exists, but is elsewhere.
      Also added tests for exporter, but the export format still
      remains the same.
      
      The code for warning about statics in singleton moved to Lint.
      
      Related to this there's one change in behavior - static members
      in singleton are no more cursed into instance members.  That's
      because a singleton actually can contain static members, though
      it's silly and JSDuck warns about that, but you can even access
      those static members in a clumsy way:
      
          MySingleton.statics().staticMethod();
      
      This is where statics: {} end up when you define them in Ext 4 way
      inside a singleton class.  And I've seen some classes in Ext/Touch
      codebase even doing so... it's nevertheless silly.
      
      As for the bogus @static tag use in singleton classes for members
      that aren't really static - these just need to be fixed.
      81ebeea8
  5. Aug 16, 2012
Loading