/******************************************************************************* * Copyright (c) 2009-2015 CWI * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * * Jurgen J. Vinju - Jurgen.Vinju@cwi.nl - CWI * * Tijs van der Storm - Tijs.van.der.Storm@cwi.nl * * Paul Klint - Paul.Klint@cwi.nl - CWI * * Mark Hills - Mark.Hills@cwi.nl (CWI) * * Arnold Lankamp - Arnold.Lankamp@cwi.nl * * Michael Steindorfer - Michael.Steindorfer@cwi.nl - CWI *******************************************************************************/ package org.rascalmpl.ast; import org.rascalmpl.value.IConstructor; import org.rascalmpl.value.ISourceLocation; public abstract class TypeVar extends AbstractAST { public TypeVar(ISourceLocation src, IConstructor node) { super(src /* we forget node on purpose */); } public boolean hasName() { return false; } public org.rascalmpl.ast.Name getName() { throw new UnsupportedOperationException(); } public boolean hasBound() { return false; } public org.rascalmpl.ast.Type getBound() { throw new UnsupportedOperationException(); } public boolean isBounded() { return false; } static public class Bounded extends TypeVar { // Production: sig("Bounded",[arg("org.rascalmpl.ast.Name","name"),arg("org.rascalmpl.ast.Type","bound")],breakable=false) private final org.rascalmpl.ast.Name name; private final org.rascalmpl.ast.Type bound; public Bounded(ISourceLocation src, IConstructor node , org.rascalmpl.ast.Name name, org.rascalmpl.ast.Type bound) { super(src, node); this.name = name; this.bound = bound; } @Override public boolean isBounded() { return true; } @Override public <T> T accept(IASTVisitor<T> visitor) { return visitor.visitTypeVarBounded(this); } @Override protected void addForLineNumber(int $line, java.util.List<AbstractAST> $result) { if (getLocation().getBeginLine() == $line) { $result.add(this); } ISourceLocation $l; $l = name.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { name.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } $l = bound.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { bound.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } } @Override public boolean equals(Object o) { if (!(o instanceof Bounded)) { return false; } Bounded tmp = (Bounded) o; return true && tmp.name.equals(this.name) && tmp.bound.equals(this.bound) ; } @Override public int hashCode() { return 541 + 491 * name.hashCode() + 331 * bound.hashCode() ; } @Override public org.rascalmpl.ast.Name getName() { return this.name; } @Override public boolean hasName() { return true; } @Override public org.rascalmpl.ast.Type getBound() { return this.bound; } @Override public boolean hasBound() { return true; } @Override public Object clone() { return newInstance(getClass(), src, (IConstructor) null , clone(name), clone(bound)); } } public boolean isFree() { return false; } static public class Free extends TypeVar { // Production: sig("Free",[arg("org.rascalmpl.ast.Name","name")],breakable=false) private final org.rascalmpl.ast.Name name; public Free(ISourceLocation src, IConstructor node , org.rascalmpl.ast.Name name) { super(src, node); this.name = name; } @Override public boolean isFree() { return true; } @Override public <T> T accept(IASTVisitor<T> visitor) { return visitor.visitTypeVarFree(this); } @Override protected void addForLineNumber(int $line, java.util.List<AbstractAST> $result) { if (getLocation().getBeginLine() == $line) { $result.add(this); } ISourceLocation $l; $l = name.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { name.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } } @Override public boolean equals(Object o) { if (!(o instanceof Free)) { return false; } Free tmp = (Free) o; return true && tmp.name.equals(this.name) ; } @Override public int hashCode() { return 167 + 809 * name.hashCode() ; } @Override public org.rascalmpl.ast.Name getName() { return this.name; } @Override public boolean hasName() { return true; } @Override public Object clone() { return newInstance(getClass(), src, (IConstructor) null , clone(name)); } } }