/******************************************************************************* * Copyright (c) 2013 Bruno Medeiros and other Contributors. * 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: * Bruno Medeiros - initial API and implementation *******************************************************************************/ package dtool.ast.declarations; import static melnorme.utilbox.core.Assert.AssertNamespace.assertTrue; import melnorme.lang.tooling.ast.CommonASTNode; import melnorme.lang.tooling.ast.IASTNode; import melnorme.lang.tooling.ast.util.ASTCodePrinter; import melnorme.lang.tooling.ast_actual.ASTNode; import melnorme.lang.tooling.engine.scoping.INonScopedContainer; import melnorme.utilbox.misc.IteratorUtil; import dtool.ast.declarations.DeclarationAttrib.AttribBodySyntax; import dtool.ast.definitions.Symbol; import dtool.ast.statements.BlockStatement; import dtool.ast.statements.IStatement; public abstract class AbstractConditionalDeclaration extends ASTNode implements INonScopedContainer, IDeclaration, IStatement { // Note: value can be an integer or keyword public static class VersionSymbol extends Symbol { public VersionSymbol(String value) { super(value); } @Override protected CommonASTNode doCloneTree() { return new VersionSymbol(name); } } public final boolean isStatement; public final AttribBodySyntax bodySyntax; public final ASTNode thenBody; // Note: can be DeclList public final ASTNode elseBody; public AbstractConditionalDeclaration(AttribBodySyntax bodySyntax, ASTNode bodyDecls, ASTNode elseDecls) { this.isStatement = false; this.bodySyntax = bodySyntax; this.thenBody = parentize(bodyDecls); this.elseBody = parentize(elseDecls); } public AbstractConditionalDeclaration(IStatement thenBody, IStatement elseBody) { this.isStatement = true; this.bodySyntax = AttribBodySyntax.SINGLE_DECL; this.thenBody = parentize((ASTNode) thenBody); this.elseBody = parentize((ASTNode) elseBody); assertTrue(!(thenBody instanceof BlockStatement)); assertTrue(!(elseBody instanceof BlockStatement)); } public boolean isStatement() { return isStatement; } @Override public Iterable<? extends IASTNode> getMembersIterable() { return IteratorUtil.chainedIterable(DeclarationAttrib.getBodyIterable(thenBody), DeclarationAttrib.getBodyIterable(elseBody)); } public void toStringAsCodeBodyAndElseBody(ASTCodePrinter cp) { cp.append(bodySyntax == AttribBodySyntax.COLON, " :\n"); cp.append(thenBody); if(elseBody != null) { cp.append("else "); cp.append(elseBody); } } }