getContext method
Get the current context of the interpreter,
Implementation
HTContext getContext() {
return HTContext(
file: currentFile,
module: currentBytecodeModule.id,
namespace: currentNamespace,
ip: currentBytecodeModule.ip,
line: currentLine,
column: currentColumn,
);
}