Package com.stuffwithstuff.magpie.interpreter

Examples of com.stuffwithstuff.magpie.interpreter.InterpreterException


      return context.toObj((Integer)result);
    } else if (result instanceof String) {
      return context.toObj((String)result);
    } else {
      // TODO(bob): Better error.
      throw new InterpreterException("???");
    }
  }
View Full Code Here

TOP

Related Classes of com.stuffwithstuff.magpie.interpreter.InterpreterException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.