Package wyvern.tools.typedAST.core.expressions

Examples of wyvern.tools.typedAST.core.expressions.Variable


    super(name, type);
  }

  public TypedAST getUse() {
    // throw new RuntimeException("this method should not be needed!!!");
    return new Variable(this, FileLocation.UNKNOWN); // FIXME: !!! Cannot replicate its use from outside!
  }
View Full Code Here


    this.value = value;
  }

  @Override
  public TypedAST getUse() {
    return new Variable(this, FileLocation.UNKNOWN);
  }
View Full Code Here

TOP

Related Classes of wyvern.tools.typedAST.core.expressions.Variable

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.