// Process every single instruction of this method. Either add it do
// the main code element, or to a try-catch block.
for (int i= 0; i < instructions.size(); ++i)
{
Element instructionParent= codeElement;
DalvInsn instruction= instructions.get(i);
int address= instruction.getAddress();
// Determine whether to add the next instruction to the
// codeElement or to a try block.
Entry currentCatch= null;
int tryElementIndex= 0;