summaryrefslogtreecommitdiff
path: root/test/scanners/java
Commit message (Collapse)AuthorAgeFilesLines
* Moving scanner tests into separate repository. The repository can be reached ↵murphy2010-04-145-102414/+0
| | | | at http://svn.rubychan.de/coderay-scanner-tests/trunk.
* Java Scanner: Package names are recognized, along with some code cleanup. ↵murphy2010-04-023-80/+104
| | | | Closes #210.
* Updated Java scanner: Higlighting of keywords according to java.sun.com.murphy2009-10-191-2468/+2468
| | | | | | * added :reserved, :pre_constant, :exception classes for idents and keywords * "threadsafe" isn't a Java keyword
* Java scanner:murphy2009-04-141-7/+7
| | | | | | | | | | | * Fixed test after r305 broke it. * [FIXED] Save last_token_dot state through comments. C scanner: * Added file_extension declaration. ** All scanners should have this. * Code cleanup.
* Java Scanner: remove :regexp cases, use :pre_type for built-in types.murphy2009-01-131-2447/+2447
|
* JRuby fixes.murphy2008-12-251-2/+4
|
* Fixed the test for Java Scanner.murphy2008-09-211-2/+2
|
* New: *Java Scanner* (closes #42).murphy2008-09-213-0/+102388
* Based on JavaScript, does a good job, but may need more polish. * Java::BuiltinTypes::List is a helper constant that contains 2389 Java types. ** The list was generated from TextMate's Java bundle with the help of SimpleRegexpScanner. * I added the JRuby core classes as example code for testing (1.8 MB) JavaScript Scanner: * Fixed recognition of floats and algebraic signs. ** Still needs work - we need to distinguish i-1 from i+-1. More changes: * New: "SimpleRegexpScanner":http://murfy.de/simple-regexp-scanner * Added new token class :annotation along with CSS styles. ** Should be useful for Python, too. * coderay_suite warns if no scanner was found for this language. * PluginHost#default can be called without parameter (will return default id)