/******************************************************************************* * 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 FunctionBody extends AbstractAST { public FunctionBody(ISourceLocation src, IConstructor node) { super(src /* we forget node on purpose */); } public boolean hasStatements() { return false; } public java.util.List<org.rascalmpl.ast.Statement> getStatements() { throw new UnsupportedOperationException(); } public boolean isDefault() { return false; } static public class Default extends FunctionBody { // Production: sig("Default",[arg("java.util.List\<org.rascalmpl.ast.Statement\>","statements")],breakable=false) private final java.util.List<org.rascalmpl.ast.Statement> statements; public Default(ISourceLocation src, IConstructor node , java.util.List<org.rascalmpl.ast.Statement> statements) { super(src, node); this.statements = statements; } @Override public boolean isDefault() { return true; } @Override public <T> T accept(IASTVisitor<T> visitor) { return visitor.visitFunctionBodyDefault(this); } @Override protected void addForLineNumber(int $line, java.util.List<AbstractAST> $result) { if (getLocation().getBeginLine() == $line) { $result.add(this); } ISourceLocation $l; for (AbstractAST $elem : statements) { $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.statements.equals(this.statements) ; } @Override public int hashCode() { return 29 + 571 * statements.hashCode() ; } @Override public java.util.List<org.rascalmpl.ast.Statement> getStatements() { return this.statements; } @Override public boolean hasStatements() { return true; } @Override public Object clone() { return newInstance(getClass(), src, (IConstructor) null , clone(statements)); } } }