/******************************************************************************* * 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 PathTail extends AbstractAST { public PathTail(ISourceLocation src, IConstructor node) { super(src /* we forget node on purpose */); } public boolean hasExpression() { return false; } public org.rascalmpl.ast.Expression getExpression() { throw new UnsupportedOperationException(); } public boolean hasMid() { return false; } public org.rascalmpl.ast.MidPathChars getMid() { throw new UnsupportedOperationException(); } public boolean hasTail() { return false; } public org.rascalmpl.ast.PathTail getTail() { throw new UnsupportedOperationException(); } public boolean hasPost() { return false; } public org.rascalmpl.ast.PostPathChars getPost() { throw new UnsupportedOperationException(); } public boolean isMid() { return false; } static public class Mid extends PathTail { // Production: sig("Mid",[arg("org.rascalmpl.ast.MidPathChars","mid"),arg("org.rascalmpl.ast.Expression","expression"),arg("org.rascalmpl.ast.PathTail","tail")],breakable=false) private final org.rascalmpl.ast.MidPathChars mid; private final org.rascalmpl.ast.Expression expression; private final org.rascalmpl.ast.PathTail tail; public Mid(ISourceLocation src, IConstructor node , org.rascalmpl.ast.MidPathChars mid, org.rascalmpl.ast.Expression expression, org.rascalmpl.ast.PathTail tail) { super(src, node); this.mid = mid; this.expression = expression; this.tail = tail; } @Override public boolean isMid() { return true; } @Override public <T> T accept(IASTVisitor<T> visitor) { return visitor.visitPathTailMid(this); } @Override protected void addForLineNumber(int $line, java.util.List<AbstractAST> $result) { if (getLocation().getBeginLine() == $line) { $result.add(this); } ISourceLocation $l; $l = mid.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { mid.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } $l = expression.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { expression.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } $l = tail.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { tail.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } } @Override public boolean equals(Object o) { if (!(o instanceof Mid)) { return false; } Mid tmp = (Mid) o; return true && tmp.mid.equals(this.mid) && tmp.expression.equals(this.expression) && tmp.tail.equals(this.tail) ; } @Override public int hashCode() { return 2 + 709 * mid.hashCode() + 499 * expression.hashCode() + 991 * tail.hashCode() ; } @Override public org.rascalmpl.ast.MidPathChars getMid() { return this.mid; } @Override public boolean hasMid() { return true; } @Override public org.rascalmpl.ast.Expression getExpression() { return this.expression; } @Override public boolean hasExpression() { return true; } @Override public org.rascalmpl.ast.PathTail getTail() { return this.tail; } @Override public boolean hasTail() { return true; } @Override public Object clone() { return newInstance(getClass(), src, (IConstructor) null , clone(mid), clone(expression), clone(tail)); } } public boolean isPost() { return false; } static public class Post extends PathTail { // Production: sig("Post",[arg("org.rascalmpl.ast.PostPathChars","post")],breakable=false) private final org.rascalmpl.ast.PostPathChars post; public Post(ISourceLocation src, IConstructor node , org.rascalmpl.ast.PostPathChars post) { super(src, node); this.post = post; } @Override public boolean isPost() { return true; } @Override public <T> T accept(IASTVisitor<T> visitor) { return visitor.visitPathTailPost(this); } @Override protected void addForLineNumber(int $line, java.util.List<AbstractAST> $result) { if (getLocation().getBeginLine() == $line) { $result.add(this); } ISourceLocation $l; $l = post.getLocation(); if ($l.hasLineColumn() && $l.getBeginLine() <= $line && $l.getEndLine() >= $line) { post.addForLineNumber($line, $result); } if ($l.getBeginLine() > $line) { return; } } @Override public boolean equals(Object o) { if (!(o instanceof Post)) { return false; } Post tmp = (Post) o; return true && tmp.post.equals(this.post) ; } @Override public int hashCode() { return 653 + 557 * post.hashCode() ; } @Override public org.rascalmpl.ast.PostPathChars getPost() { return this.post; } @Override public boolean hasPost() { return true; } @Override public Object clone() { return newInstance(getClass(), src, (IConstructor) null , clone(post)); } } }