001/* 002 * Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA-Lyon) 003 * 004 * All rights reserved. This program and the accompanying materials 005 * are made available under the terms of the Eclipse Public License v1.0 006 * which accompanies this distribution, and is available at 007 * http://www.eclipse.org/legal/epl-v10.html 008 */ 009 010package org.eclipse.golo.compiler.parser; 011 012public class ASTContinue extends GoloASTNode { 013 014 public ASTContinue(int id) { 015 super(id); 016 } 017 018 public ASTContinue(GoloParser p, int id) { 019 super(p, id); 020 } 021 022 @Override 023 public String toString() { 024 return "ASTContinue{}"; 025 } 026 027 @Override 028 public Object jjtAccept(GoloParserVisitor visitor, Object data) { 029 return visitor.visit(this, data); 030 } 031}