Package com.stuffwithstuff.bantam.expressions

Examples of com.stuffwithstuff.bantam.expressions.NameExpression


/**
* Simple parselet for a named variable like "abc".
*/
public class NameParselet implements PrefixParselet {
  public Expression parse(Parser parser, Token token) {
    return new NameExpression(token.getText());
  }
View Full Code Here

TOP

Related Classes of com.stuffwithstuff.bantam.expressions.NameExpression

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.