public class Pls extends Unary {
  public Pls (int id) {
  }
  public Object sem () throws SemanticException {
    super.sem();
    if (childT != Integer.class && childT != Float.class)
      throw new SemanticException("unary + expects float or int");
    return T = childT;
  }
}

