diff options
author | jhugunin <jhugunin> | 2003-03-10 23:18:56 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-03-10 23:18:56 +0000 |
commit | cd8bd2c7cef6d403d6a60c7f3deb104b2898364b (patch) | |
tree | dbe8d190c2625714e8b05e0c16a25c4aae6c7f1c /tests/scripts | |
parent | 7139ac48be452e260c39f5c75ed845b661725cc9 (diff) | |
download | aspectj-cd8bd2c7cef6d403d6a60c7f3deb104b2898364b.tar.gz aspectj-cd8bd2c7cef6d403d6a60c7f3deb104b2898364b.zip |
further work on binary aspects (aspect path) tested correct behavior
for obvious forms of concrete aspects, next need to address abstract
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/incr.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/scripts/incr.py b/tests/scripts/incr.py index 1e767aceb..e4acce69f 100644 --- a/tests/scripts/incr.py +++ b/tests/scripts/incr.py @@ -115,6 +115,7 @@ def makeSet(errors): ret = {}
for e in errors:
loc = e.getISourceLocation()
+ if loc is None: continue #???
s = "%s:%i" % (loc.sourceFile.name[:-5], loc.line)
ret[s] = s
return ret.keys()
|