Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | defensively supplying ISourceLocation.NO_FILE when there is no file in the ↵ | wisberg | 2003-05-14 | 1 | -1/+7 | |
| | | | | | | | | result. This is needed for file-based message matching to not fail when no file is specified, and might provide a more sensible error message if the file is used. This only replaces a NPE or invalid (empty) filename strings. | |||||
* | patch mentioned on the list for detecting errs in incremental command line | wisberg | 2003-05-14 | 2 | -2/+20 | |
| | ||||||
* | fix to use cache for isPackage method (as indicated by previous !!! comment) | jhugunin | 2003-05-09 | 1 | -2/+25 | |
| | | | | | this fixes the two failing incremental test cases just added by Wes and now moved to ajcTests as passing | |||||
* | Backing out the change I made to add the output directory to the classpath. | wisberg | 2003-05-09 | 1 | -5/+5 | |
| | | | | | This is wrong because we should resolve types wrt the cached classes in the weaver. But if this change were left in, the test cases just added to ajcTestsFailing.xml pass. | |||||
* | adding output dir/jar by default to classpath to permit resolving types in ↵ | wisberg | 2003-05-08 | 1 | -16/+22 | |
| | | | | | | incremental compile Might need to be more discriminating and/or to document. | |||||
* | - removed invalid test requiring -sourceroots in the argument list. They ↵ | wisberg | 2003-05-08 | 1 | -30/+31 | |
| | | | | | | might be in a config file. - handling request for fresh rebuild during incremental | |||||
* | fix for reported bug with invalid classpath entries (from the environment) | jhugunin | 2003-05-07 | 3 | -21/+64 | |
| | | | | being reported as errors. These are now just info messages. | |||||
* | fixed bug for inferring the kind of messages from the eclipse batch | jhugunin | 2003-05-07 | 1 | -2/+2 | |
| | | | | compiler where == -1 was used instead of != -1 | |||||
* | wrong handler reference | wisberg | 2003-05-07 | 1 | -4/+4 | |
| | ||||||
* | creating a fresh AjState object whenever doing a batch build to make | jhugunin | 2003-05-06 | 1 | -0/+4 | |
| | | | | | sure we're doing a completely new build without confusion from previous state | |||||
* | "organized imports" to eliminate compiler warnings | acolyer | 2003-05-06 | 2 | -27/+3 | |
| | ||||||
* | - special-casing -help to avoid printing usage twice | wisberg | 2003-05-06 | 2 | -0/+14 | |
| | | | | | | | - guarding usage against loading eclipse message, which it did if called before some instance loaded the bundle (which should probably be loaded in a static initializer) | |||||
* | NPE guard - client of getSourceLocation only uses files - enforcing that. | wisberg | 2003-05-05 | 1 | -0/+6 | |
| | | | | (ajcTests.xml -emacssym passes) | |||||
* | addressing (Andy's) NPE - null source location is permitted for packages, so ↵ | wisberg | 2003-05-05 | 1 | -88/+120 | |
| | | | | | | I checked all uses for NPE. Also cleaned up the code a bit. Should be semantics-preserving. | |||||
* | redoing root to be kind [java file || config file] -- | wisberg | 2003-05-05 | 1 | -9/+8 | |
| | | | | was java file kind for config files. | |||||
* | fix and better tests for | jhugunin | 2003-05-02 | 2 | -5/+20 | |
| | | | | | Bugzilla Bug 37152 java.lang.VerifyError: | |||||
* | more progress messages for ajde | jhugunin | 2003-05-01 | 1 | -0/+2 | |
| | ||||||
* | added test that deprecation warnings are not shown unless asked for | jhugunin | 2003-05-01 | 1 | -1/+3 | |
| | | | | modifying option setting to make that test pass | |||||
* | expanded coverage and fix for bug involving around advice with either | jhugunin | 2003-05-01 | 2 | -0/+24 | |
| | | | | | | | assert or <name>.class in the body the fix for now is just to not inline such advice, but in the future these should be transformed to inlinable constructs | |||||
* | Making genBuildConfig static so it can be re-used from AJDE. | wisberg | 2003-04-30 | 1 | -2/+3 | |
| | ||||||
* | added support for adopting global configuration values (without overwriting ↵ | wisberg | 2003-04-30 | 1 | -2/+98 | |
| | | | | local values) | |||||
* | refactored batch and incremental into one method to make it easier to see ↵ | wisberg | 2003-04-30 | 1 | -193/+107 | |
| | | | | the differences and do a fix. | |||||
* | test case can't expect usage message any more | wisberg | 2003-04-30 | 1 | -2/+2 | |
| | ||||||
* | track internal API changes | wisberg | 2003-04-29 | 1 | -8/+20 | |
| | ||||||
* | using Kind.isSameOrLessThan(..) rather than direct compare for inferring streams | wisberg | 2003-04-29 | 1 | -4/+1 | |
| | ||||||
* | semantics-preserving - still only warn if aspectjrt.jar not found | wisberg | 2003-04-29 | 1 | -3/+7 | |
| | ||||||
* | boolean hasSources() to validate after parsing | wisberg | 2003-04-29 | 1 | -0/+9 | |
| | ||||||
* | error-handling cleaned up | wisberg | 2003-04-29 | 1 | -44/+57 | |
| | | | | | | | | - usage printed once by caller - any arg mistake is an error (i.e., not ignoring/continuing) (does not include list entries like classpath) - refactored commands to share common error-handling code | |||||
* | - detecting unflagged directories | wisberg | 2003-04-29 | 1 | -31/+61 | |
| | | | | | - !! changed warnings to errors, so now not compiling after command-line mistakes | |||||
* | not accepting directories any more | wisberg | 2003-04-29 | 1 | -2/+2 | |
| | ||||||
* | Checking in Mik's changes sent by email today for model and incremental ↵ | wisberg | 2003-04-28 | 2 | -9/+44 | |
| | | | | | | | support in AJDE. ajde has the same test failing as it did before this checkin, perhaps caused by a regression per bug 37020 | |||||
* | fix and test for | jhugunin | 2003-04-27 | 2 | -0/+30 | |
| | | | | | Bugzilla Bug 34951 NPE compiling without aspectjrt.jar | |||||
* | test and fix for Bugzilla Bug 36564 | jhugunin | 2003-04-22 | 1 | -2/+4 | |
| | | | | Internal compiler error | |||||
* | fix for Bugzilla Bug 36673 | jhugunin | 2003-04-22 | 2 | -2/+7 | |
| | | | | VerifyError in privileged aspect | |||||
* | fix for Bugzilla Bug 36736 | jhugunin | 2003-04-22 | 1 | -4/+8 | |
| | | | | | compiler error expected for implemented abstract pointcuts (using declaredModifiers instead of modifiers so interfaces don't cause trouble) | |||||
* | fix for Bugzilla Bug 36736 | jhugunin | 2003-04-22 | 1 | -1/+6 | |
| | | | | compiler error expected for implemented abstract pointcuts | |||||
* | adding -bootclasspath and -extdirs to documentation | wisberg | 2003-04-11 | 1 | -0/+7 | |
| | ||||||
* | fixing declare parents problems | jhugunin | 2003-04-11 | 3 | -41/+13 | |
| | ||||||
* | fix for Bugzilla Bug 35688 | jhugunin | 2003-04-10 | 1 | -0/+5 | |
| | | | | | ajc1.1rc1 fail to find types that are actually in JACK jar file and abort still need test case | |||||
* | re-implementing support for incremental compilation after move to 2.1 | jhugunin | 2003-04-10 | 10 | -521/+939 | |
| | | | | | | this time we're doing it all ourselves rather than using the Builders which have steadily come to depend more on having an actual eclipse workbench running | |||||
* | addressing line ending issues and matching with eclipse 2.1 minor changes | jhugunin | 2003-04-10 | 1 | -3/+3 | |
| | ||||||
* | commenting out accidental debugging println | jhugunin | 2003-04-10 | 1 | -1/+1 | |
| | ||||||
* | fix for [Bug 35593] Problem with priviliged aspects | jhugunin | 2003-04-10 | 1 | -4/+3 | |
| | ||||||
* | Major changes in order to move to Eclipse-JDT 2.1 as a base. | jhugunin | 2003-03-28 | 55 | -3788/+873 | |
| | | | | | | In the process of this many changes were made to try to make keeping up with the Eclipse-JDT code base as easy as possible in the future. | |||||
* | test and fix for Bugzilla Bug 34925 v1_1_0_RC1 | jhugunin | 2003-03-13 | 2 | -50/+57 | |
| | | | | compiler crash on yesterday's rc1 build | |||||
* | fix for class not allowed to extend aspect and moving corresponding test out ↵ | jhugunin | 2003-03-12 | 1 | -0/+9 | |
| | | | | of failing | |||||
* | fixed for graceful error handling (i.e. the compiler doesn't dump stack ;-) | jhugunin | 2003-03-12 | 2 | -1/+2 | |
| | | | | in response to tests now moved out of failing | |||||
* | better rendering of exceptions thrown (including those from ↵ | wisberg | 2003-03-12 | 1 | -9/+11 | |
| | | | | previously-unrendered FAIL messages) | |||||
* | fix and test for Bugzilla Bug 34820 | jhugunin | 2003-03-12 | 3 | -45/+11 | |
| | | | | ajc -aspectpath fails with NPE for cflow pointcuts | |||||
* | implemented fastMatch method along with some basic tests of | jhugunin | 2003-03-12 | 3 | -0/+45 | |
| | | | | weave performance with and without it |