public class Ash extends IntBinary {
  public Ash (int id) {
  }
  public Object sem () throws SemanticException {
    return super.sem(">>>");
  }
  public Object run () {
    return IntLit.ash((Number)a.run(), (Number)b.run());
  }
}

