You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
415 B
18 lines
415 B
package jode;
|
|
|
|
public class Block extends Instruction {
|
|
Expression[] exprs;
|
|
|
|
public Block(int addr, int length, Expression[] exprs) {
|
|
super(addr,length);
|
|
this.exprs = exprs;
|
|
}
|
|
|
|
public void dumpSource(TabbedPrintWriter writer, CodeAnalyzer ca)
|
|
throws java.io.IOException
|
|
{
|
|
for (int i=0; i< exprs.length; i++)
|
|
exprs[i].dumpSource(writer,ca);
|
|
}
|
|
}
|
|
|
|
|