Interface AwkInterpreter

All Known Implementing Classes:
AVM

public interface AwkInterpreter
Interpret a Jawk script within this JVM.
Author:
Danny Daglas
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Traverse the tuples, interpreting tuple opcodes and arguments and acting on them accordingly.
  • Method Details

    • interpret

      void interpret(AwkTuples tuples) throws ExitException, IOException
      Traverse the tuples, interpreting tuple opcodes and arguments and acting on them accordingly.
      Parameters:
      tuples - The tuples to compile.
      Throws:
      ExitException - indicates that the interpreter would like the application to exit.
      IOException - in case of I/O problems (with getline typically)