Skip to content
  1. Nov 22, 2010
  2. Nov 21, 2010
  3. Nov 18, 2010
  4. Nov 17, 2010
  5. Nov 16, 2010
  6. Nov 15, 2010
    • Rene Saarsoo's avatar
      README update for @ignore, @hide, @private. · dd691d63
      Rene Saarsoo authored
      dd691d63
    • Rene Saarsoo's avatar
      Big rewrite. · c416fb5a
      Rene Saarsoo authored
      All the complex comment and code analyzing is now done by Merger class,
      the doc_comment_parser now just parses input into a linear array of at-tags.
      The Merger completely replaces DocComment class and most of the complex
      work in DocCommentParser.
      
      Most of the tests are now also at top level tc_jsduck - so that we
      mainly test the whole jsduck module, allowing the internal classes to be
      more easily reorganized.
      
      @ignore and @hide are now simply aliases of @private.
      c416fb5a
  7. Oct 30, 2010
  8. Oct 27, 2010
  9. Oct 26, 2010
  10. Oct 25, 2010
  11. Oct 24, 2010
  12. Oct 22, 2010
  13. Oct 21, 2010
    • Rene Saarsoo's avatar
      at-tag main properties must now be on single line. · fabfadb4
      Rene Saarsoo authored
      Only the comment may span several lines.
      
      This means we can just say:
      
        /**
         * @cfg
         * True to enable this component.
         */
        enabled: false,
      
      Previously this meant that we declared cfg with name "True",
      but now the name cannot come after newline, so we can leave the
      name out of the doc-comment and infer it from the source.
      
      Parser enhancements to be able to infer @cfg and @event name from code.
      
      DocComment enhancements to be able to set the name of at-tags other than
      the default.
      fabfadb4
    • Rene Saarsoo's avatar
      DocCommentParser now returns array of tagsets. · 88dd2f42
      Rene Saarsoo authored
      Meaning that when doc-comment contains @class followed by @cfg
      and @event, then three tagsets are returned.
      88dd2f42
Loading