diff options
author | aclement <aclement> | 2009-01-29 06:06:57 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-01-29 06:06:57 +0000 |
commit | 2a002f6542f6401c3b824930c5a0b2df0ef1a277 (patch) | |
tree | b68e465fe132588bae7f9c25f1831bd4ec43f5dc /weaver/testsrc/org | |
parent | 127b5202621a73150e90028420da2828a4a9f869 (diff) | |
download | aspectj-2a002f6542f6401c3b824930c5a0b2df0ef1a277.tar.gz aspectj-2a002f6542f6401c3b824930c5a0b2df0ef1a277.zip |
194314: updated based on extra param
Diffstat (limited to 'weaver/testsrc/org')
-rw-r--r-- | weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java b/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java index 45bd977a4..0155cb03c 100644 --- a/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java +++ b/weaver/testsrc/org/aspectj/weaver/bcel/MoveInstructionsWeaveTestCase.java @@ -13,6 +13,7 @@ package org.aspectj.weaver.bcel; import java.io.IOException; +import java.util.ArrayList; import org.aspectj.apache.bcel.generic.InstructionFactory; import org.aspectj.weaver.NameMangler; @@ -38,7 +39,7 @@ public class MoveInstructionsWeaveTestCase extends WeaveTestCase { BcelShadow shadow = (BcelShadow) s; LazyMethodGen newMethod = shadow.extractShadowInstructionsIntoNewMethod(NameMangler.getExtractableName(shadow .getSignature()) - + "_extracted", 0, this.getSourceLocation()); + + "_extracted", 0, this.getSourceLocation(), new ArrayList()); shadow.getRange().append(shadow.makeCallToCallback(newMethod)); if (!shadow.isFallsThrough()) { @@ -64,7 +65,7 @@ public class MoveInstructionsWeaveTestCase extends WeaveTestCase { BcelShadow shadow = (BcelShadow) s; LazyMethodGen newMethod = shadow.extractShadowInstructionsIntoNewMethod(NameMangler.getExtractableName(shadow .getSignature()) - + "_extracted" + counter++, 0, this.getSourceLocation()); + + "_extracted" + counter++, 0, this.getSourceLocation(), new ArrayList()); shadow.getRange().append(shadow.makeCallToCallback(newMethod)); if (!shadow.isFallsThrough()) { |