Package loop.ast

Examples of loop.ast.RegexLiteral


      case LONG:
        return new LongLiteral(token.value);
      case STRING:
        return new StringLiteral(token.value);
      case REGEX:
        return new RegexLiteral(token.value);
    }

    if ("#t".equals(token.value) || "#true".equals(token.value))
      return new BooleanLiteral(new Token(token.value, Token.Kind.TRUE, token.line, token.column));
    else if ("#f".equals(token.value) || "#false".equals(token.value))
View Full Code Here

TOP

Related Classes of loop.ast.RegexLiteral

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.