- Jul 17, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
The new --old-version option allows one to point JSDuck at doc exports for different versions. JSDuck will then import the exported data and generate @since tags based on that. For start only classes get @since tags.
-
- Jul 14, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
The Class#get_members now allows three values for the 'static' parameter: true, false, nil. False can now be used to grab only instance members, while nil will return both instance & static.
-
- Jul 13, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
- Jul 12, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
When expanding widget.* enums, set enum properties as private when the class defining the alias is private.
-
Rene Saarsoo authored
It was at the wrong level - foo.* enums were reported as empty.
-
Rene Saarsoo authored
So one can declare: @enum [xtypes=widget.*] and it will be automatically populated with all available widget types.
-
Rene Saarsoo authored
Auto detected properties default to being private normally, but for enums, all possible values should be public.
-
- Jul 11, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
/** @enum {String} */ Foo = {foo: 1, bar: 2, baz: 3};
-
Rene Saarsoo authored
It acts just like class with special enum=true flag. The values of an enum are just class properties.
-
- Jul 04, 2012
-
-
Rene Saarsoo authored
This will automatically choose an available Markdown implementation. Additionally added missing require statement to doc_formatter_spec.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
A regression. This worked in JSDuck 3.x but the behavior was lost during parser updates. Now additionally covered with unit tests.
-
- Jul 02, 2012
-
-
Rene Saarsoo authored
This premature optimization was causing a strange test failure regarding MetaTagRegistry. I did some speed measurements and there seemed to be no performance benefit of having this class being singleton.
-
- Jun 27, 2012
-
-
Rene Saarsoo authored
Add esprima.js also to include files.
-
Rene Saarsoo authored
When using NodeJS as the JS engine, the serialization of RegExp object results in an empty Object/Hash not in nil as in therubyracer gem.
-
Rene Saarsoo authored
ExecJS will select the available JavaScript runtime.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
- Jun 26, 2012
-
-
Rene Saarsoo authored
- Move JS/CSS parsing error handling up to the level where we read the file in, so when IO error occours we'll also catch that. - Handle guide reading/formatting errors. - Handle errors in formatting class docs (wasn't able to test it, but a user reported a stack trace with encoding error happening inside there - maybe a difference when running in Windows).
-
Rene Saarsoo authored
Previously when default value was 'false' it got ignored completely as a result of just checking the truthiness of default value. Now explicitly checking that the value is not nil.
-
Rene Saarsoo authored
When parent class has config "foo" then the auto-detected property "foo" in child class should also be a config. Incorporated this logic in InheritDoc class. Added separate test file.
-
Rene Saarsoo authored
-
- Jun 25, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
It seems that VBulletin membergroupids have changed. ID 7 no more means a moderator - instead all moderators have 2 and dev team has additional ID of 19. The mapping of membergroupids to moderator status is now done just once at login time. Previously the group number was checked whenever one wanted to determine moderator status, although a boolean moderator field had been set at login. Additionally fixed emailHash saving in ForumUser#clientUser - previously the result of calculation was just thrown away.
-
- Jun 05, 2012
-
-
Rene Saarsoo authored
Solved conflicts with @throws implementation and addition to CSS parser.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
- Jun 04, 2012
-
-
Rene Saarsoo authored
-