Package scriptingLanguage.variables

Examples of scriptingLanguage.variables.InterpreterClass


 
  private static void makeNewType(Token line, AbstractFrame frame) throws ArrayIndexOutOfBoundsException, IllegalArgumentException, InterpreterException {
    if (!(line = line.getNextToken()).getCarType().equals(identifierType))
      throw new UnexpectedTokenException("Expected an identifier, got a " + line.getCarType() + ".  " + line.toString());
    String type = (String) line.getCar();
    frame.addType(type, new InterpreterClass(type, line.getNextToken(), frame));
  }
View Full Code Here

TOP

Related Classes of scriptingLanguage.variables.InterpreterClass

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.