[BCEL-info]accept method in the StoreInstruction class
Brought to you by:
dahm
|
From: Laurent R. <lau...@ep...> - 2002-05-12 13:10:26
|
Is this implementation of the accept method in
de.fub.bytecode.generic.StoreInstruction class correct ? It call
visitStoreInstruction twice !
public void accept(Visitor v) {
v.visitStackConsumer(this);
v.visitPopInstruction(this);
v.visitStoreInstruction(this); <- ?
v.visitTypedInstruction(this);
v.visitLocalVariableInstruction(this);
v.visitStoreInstruction(this);
}
Thanks.
Laurent.
|