Directory Statistics for javacc/

Back to Index Page

Lines Of Code for javacc/

Commits for javacc/ (per author)

AuthorRevisionsLines of CodeAdded Lines of CodeLines of Code per Change
rinkrank 43 (81.1%)1734 (92.1%)2568 (85.1%)40.33
ara_e_w 10 (18.9%)149 (7.9%)451 (14.9%)14.90

Commit Log

DateAuthorFile/Message
05/05/03 00:20 rinkrank
o Added tag discovery via BeanInfo o Set version to 1.0.1-SNAPSHOT (1 Files changed, 10 Lines changed)
29/04/03 20:12 rinkrank
o XJavaDoc is no longer a singleton o Applied XJD-24 (1 Files changed, 14 Lines changed)
25/03/03 23:55 rinkrank
Added two method to XMethod: getAccessor() and getMutator(). These are for accessing a mutator method's corresponding accessor method and vice versa. (1 Files changed, 0 Lines changed)
21/03/03 15:36 rinkrank
Fixed UnmodifiedInterfaceDeclaration bug (XJD-17) and added a test case for it. (1 Files changed, 14 Lines changed)
20/03/03 22:36 rinkrank
Introduced a new Interface in XJavaDoc: xjavadoc.Type. This interface provides about the XClass AND the dimension. (1 Files changed, 2 Lines changed)
05/01/03 19:40 rinkrank
Improved comments (1 Files changed, 8 Lines changed)
05/01/03 19:24 rinkrank
Allow semicolons after method blocks. The official grammar (http://java.sun.com/docs/books/jls/second_edition/html/syntax.doc.html) disallows it, but javac allows it. Therefore xjavadoc should allow it too, so bad coders can avoid unpleasant surprises. (1 Files changed, 1 Lines changed)
04/01/03 20:18 rinkrank
Make sure qualified name is set before looking at extends list. This fixes incorrect complaints about non existing classes. (1 Files changed, 3 Lines changed)
22/11/02 23:52 rinkrank
Fixed XJD-8. (1 Files changed, 26 Lines changed)
30/10/02 22:36 rinkrank
Fixed XJD-4. Unicode is now supported in XJavadoc (phew!). Building xjavadoc or xdoclet with -Dxjavadoc.unicode=true will now generate xjavadoc.unicode.jar (which is a bit slower than the normal xjavadoc.jar). Without this option, everything works as before. For the release, remember to build xjavadoc both with and without this option, so both jars go into the distro. People who want unicode support will just have to remove xjavadoc.jar (or make sure xjavadoc-unicode.jar comes earlier in the classpath). Warning messages from javacc are also gone now (except the unicode warning when generating the regular xjavadoc). Aslak (1 Files changed, 0 Lines changed)
30/10/02 02:02 rinkrank
-Added CodeUnit -Simplified XJavadoc API -Updated XDoclet and XDoclet GUI to fit changes -Fixed the home inheritance removal problems (I hope) -XJavadoc is using commons predicate in stead of homegrown filters -Removed obsolete classes -Upgraded xdoclegui IDEA plugin to work with Ariadna 655 (1 Files changed, 87 Lines changed)
23/10/02 23:38 rinkrank
Fix for XJD-6 (1 Files changed, 3 Lines changed)
03/10/02 21:47 ara_e_w
*** empty log message *** (1 Files changed, 93 Lines changed)
25/08/02 19:02 rinkrank
Made proper inheritance support for anonymous classes (1 Files changed, 5 Lines changed)
04/08/02 21:48 rinkrank
-Refactored common code in xjavadoc grammar. -Removed incorrect code blocks in LOOKAHEAD blocks -All xjavadoc tests are green again -Refactored getQualifiedName from XProgramElement down to XClass. -Better (but still not good) task/subtask docs -Switched back to standard Anakia task (to make GUMP happy) -No longer throw X on duplicate classes. Just warn (to make GUMP happy) -Misc other updates (1 Files changed, 170 Lines changed)
02/08/02 21:38 ara_e_w
- implemented stack base class/inner/anonymous class handling - added a test case (note: tests fail but not because of my changes, Aslak plz check it) - changed type resolution order a bit: inner class first, then import/etc note: inner classes defined in a method block are treated like inner classes of the containging class, anonymous classes are just ignored. It's very unlikely to tag a name-less anon class. (1 Files changed, 97 Lines changed)
30/07/02 01:56 rinkrank
-Added 4 methods to access subclasses/subinterfaces to xjavadoc. Needed for Ant docs later -xjavadoc no longer throws XJavaDocException on getSourceClasses() and getSourcePackages() -Removed dead code from xjavadoc grammar -Made ModulesGrandBuilderTask throw BuildException if one of the child processes fail (1 Files changed, 0 Lines changed)
15/07/02 22:33 rinkrank
Let's be correct! (1 Files changed, 1 Lines changed)
15/07/02 22:26 rinkrank
Added support for the assert keyword. Couldn't find a bug report or FR for this (!?) (1 Files changed, 10 Lines changed)
26/06/02 20:44 ara_e_w
- class level inner classes are now correctly resolved. No ProxyClass is used, I just changed the call order and ensured everything is lazyly calculated. anonymous classes and method level inner classes are not resolved yet, I should change the sourceClass to a stack (tomorrow night). - Some mini optimizations: _namedMethods/_namedConstructors/etc lazyly created, absolutely when nessecary (very rare usage). (1 Files changed, 7 Lines changed)