More execution work

This commit is contained in:
Adam
2015-02-01 17:49:33 -05:00
parent cec4f0ac59
commit e38b4c5212
15 changed files with 161 additions and 17 deletions

View File

@@ -79,4 +79,10 @@ public class NameAndType extends PoolEntry
return count;
}
public boolean isNonVoid()
{
java.lang.String methodRefType = this.getDescriptor();
return !methodRefType.endsWith(")V");
}
}