/******************************************************************************* * 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 Declarator extends AbstractAST { public Declarator(ISourceLocation src, IConstructor node) { super(src /* we forget node on purpose */); } public boolean hasVariables() { return false; } public java.util.List<org.rascalmpl.ast.Variable> getVariables() { throw new UnsupportedOperationException(); } public boolean hasType() { return false; } public org.rascalmpl.ast.Type getType() { throw new UnsupportedOperationException(); } public boolean isDefault() { return false; } static public class Default extends Declarator { // Production: sig("Default",[arg("org.rascalmpl.ast.Type","type"),arg("java.util.List\<org.rascalmpl.ast.Variable\>","variables")],breakable=false) private final org.rascalmpl.ast.Type type; private final java.util.List<org.rascalmpl.ast.Variable> variables; public Default(ISourceLocation src, IConstructor node , org.rascalmpl.ast.Type type, java.util.List<org.rascalmpl.ast.Variable> variables) { super(src, node); this.type = type; this.variables = variables; } @Override public boolean isDefault() { return true; } @Override public <T> T accept(IASTVisitor<T> visitor) { return visitor.visitDeclaratorDefault(this); } @Override protected void addForLineNumber(int $line, java.util.List<AbstractAST> $result) { if (getLocation().getBeginLine() == $line) { $result.add(this); } ISourceLocation $l; $l = type.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { type.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } for (AbstractAST $elem : variables) { $l = $elem.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { $elem.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } } } @Override public boolean equals(Object o) { if (!(o instanceof Default)) { return false; } Default tmp = (Default) o; return true && tmp.type.equals(this.type) && tmp.variables.equals(this.variables) ; } @Override public int hashCode() { return 257 + 307 * type.hashCode() + 577 * variables.hashCode() ; } @Override public org.rascalmpl.ast.Type getType() { return this.type; } @Override public boolean hasType() { return true; } @Override public java.util.List<org.rascalmpl.ast.Variable> getVariables() { return this.variables; } @Override public boolean hasVariables() { return true; } @Override public Object clone() { return newInstance(getClass(), src, (IConstructor) null , clone(type), clone(variables)); } } }