summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Minor fixes.mkersten2003-07-221-2/+22
|
* Added coverge to LST file tests. Improved name of file opening method.mkersten2003-07-226-16/+40
|
* Added coverge to LST file tests.mkersten2003-07-223-1/+8
|
* changed default compiler behavior to ignore unreachable code (matching Javac)mkersten2003-07-221-1/+1
|
* Addes support for JDT's Java options map.mkersten2003-07-223-1/+24
|
* Improved name of compilerAdatper private.mkersten2003-07-221-10/+10
|
* Started compiler design doc.mkersten2003-07-212-0/+155
|
* Updated ASM docs, added dependency to ajbrowser in modules doc.mkersten2003-07-172-28/+74
|
* Re-added taskdefs dependancy for build system.mkersten2003-07-172-0/+2
|
* added "| .." to args for method and constructor pattern in the Word source ↵wisberg2003-07-171-0/+0
| | | | | | | file. Previously added to the generated .pdf files (I can edit pdf files, but not generate pdf from word).
* added pre-compiled .jar needed for Bugzilla Bug 39462 jhugunin2003-07-161-0/+0
| | | | Compiler crashes in jar and cflow
* Fix for Bugzilla #39479, #40109 jhugunin2003-07-168-11/+81
| | | | | | | | | | | | | based on patch contributed by Andy Clement Generalizes the patch with a method org.aspectj.weaver.bcel.Utility.copyInstruction that works-around the bug in Select.copy(). Changed all calls to Instruction.copy() to use this new method, would be nice to add the rule: * declare error: * call(* Instruction.copy()) && within(org.aspectj.weaver) * && !withincode(* Utility.copyInstruction(Instruction)): * "use Utility.copyInstruction to work-around bug in Select.copy()";
* looks good. fixed "org.eclipse.ajdt.core", wisberg2003-07-161-7/+20
| | | | added how to build, jdt.core patch/sources
* minor updates listed in the "recent changes" section.wisberg2003-07-161-57/+122
|
* surface ".." form for some number of arguments. wisberg2003-07-162-0/+0
| | | | | I'm using a different version of acrobat, so this might cause problems.
* added caveat for around advice on initializationwisberg2003-07-151-1/+5
|
* Updated modules documentation. mkersten2003-07-151-0/+353
| | | | Added ASM documentation.
* Updated dependency list.mkersten2003-07-151-2/+3
|
* Removed project dependancy on taskdefs project.mkersten2003-07-152-3/+1
|
* Updated module docs.mkersten2003-07-152-71/+399
|
* Finally adding some design docs (after 4 years).mkersten2003-07-143-0/+590
|
* Added safeguard for missing 1.3 setLocationRelativeTo method.mkersten2003-07-091-2/+6
|
* Fixed bugs introduced in 1.1rc2, where cast of message was incorrect.mkersten2003-07-091-6/+6
|
* test for Bugzilla Bug 39479 jhugunin2003-07-033-4/+41
| | | | NPE in bcel.LazyMethodGen when delegating from one ctor to a second that includes a switch.
* added test for Bugzilla Bug 39462 jhugunin2003-07-024-1/+33
| | | | Compiler crashes in jar and cflow
* tests and fixes for two awful error message bugs: jhugunin2003-07-027-14/+88
| | | | | [Bug 39458] New: Compiler crash in ajc 1.1 [Bug 39460] New: Missing import crashes compiler
* replacing 1.2 Vector API's with equivalent 1.1 API's to make telecom ↵wisberg2003-06-301-2/+2
| | | | testable under 1.1
* Updated post 1.1.0 release build.acolyer2003-06-062-5/+5
|
* Updated for 1.1.0 releaseV1_1_0acolyer2003-06-062-5/+5
|
* change only in comment echoed to output, listing expected failures for the ↵wisberg2003-06-051-1/+4
| | | | link checker.
* - linkcheck wisberg2003-06-051-2/+96
| | | | | - 1.1 examples (disabled pending hang fix) - separate examples, since nonGui goes OOM under 1.3
* adding keyword knownLimitation-run11wisberg2003-06-051-7/+8
|
* quick and dirty link checker manual testwisberg2003-06-051-0/+25
|
* quick and dirty link checkerwisberg2003-06-051-0/+546
|
* link fixeswisberg2003-06-056-21/+19
|
* moved to docswisberg2003-06-043-1943/+0
|
* 1.1 doc changes wisberg2003-06-046-32/+2040
| | | | | | - moving readme's to docs - finishing readme-11 as change/porting - misc...
* 1.1 updateswisberg2003-06-041-52/+104
|
* handler after/around advice limitationwisberg2003-06-041-2/+5
|
* added test for Bugzilla Bug 38345 jhugunin2003-06-023-0/+37
| | | | VerifyError, Inconsistent stack height with try/switch/if combination
* updated for testing 1.1 classes, wisberg2003-06-021-12/+41
| | | | | (exclusive of changes to docs/dist/doc/examples/telecom/Call.java)
* former version was built with -target 1.2, so it has a bad major version ↵wisberg2003-06-021-0/+0
| | | | when running under 1.1
* javarun attributes for interpreting error/output streams as errors, used ↵wisberg2003-06-024-5/+55
| | | | only when forking
* corrected property name for forking run classpathwisberg2003-06-021-1/+1
|
* added output snooper to ProcessController for testing clientwisberg2003-06-021-0/+8
|
* Expanded error message to make it clear that it is coming from parsing.mkersten2003-06-012-5/+6
|
* better unwrapping of exceptionswisberg2003-05-311-11/+32
|
* harness system.exit testswisberg2003-05-311-0/+20
|
* adding examples, without testing from this script. bad.wisberg2003-05-311-0/+14
|
* Added SecurityManager which halts any System.exit() call from JavaRun thread ↵wisberg2003-05-311-11/+138
| | | | | | and puts the exit code in the status object. This enables us to run the examples.