/* * This file is part of the X10 project (http://x10-lang.org). * * This file is licensed to You under the Eclipse Public License (EPL); * You may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.opensource.org/licenses/eclipse-1.0.php * * (C) Copyright IBM Corporation 2006-2010. */ package x10.ast; import polyglot.ast.Do_c; import polyglot.ast.Expr; import polyglot.ast.Node; import polyglot.ast.Stmt; import polyglot.types.SemanticException; import polyglot.types.TypeSystem; import polyglot.util.Position; import polyglot.visit.ContextVisitor; import x10.errors.Errors; /** * @author igor */ public class X10Do_c extends Do_c { /** * @param pos * @param body * @param cond */ public X10Do_c(Position pos, Stmt body, Expr cond) { super(pos, body, cond); // TODO Auto-generated constructor stub } /** Type check the statement. */ public Node typeCheck(ContextVisitor tc) { TypeSystem ts = tc.typeSystem(); if (! ts.isSubtype(cond.type(), ts.Boolean(), tc.context())) { Errors.issue(tc.job(), new Errors.DoStatementMustHaveBooleanType(cond.type(), cond.position()), this); } return this; } }