Code Review: InterpreterFixAndRemoval

tfpt review “/shelveset:InterpreterFixAndRemoval;REDMOND\tomat”

(interpreter change reviewed by John).

Interpreter:

Fixes a bug in interpreter - if an exception was thrown in a finally
clause the handler of that exception didn’t get executed since the
current instruction index was already beyond “endIndex”. We need to set
endIndex to _instructions.Length.

Ruby:

Removes old interpreter.

Tomas