Class BitshiftExpression

All Implemented Interfaces:
IArithmeticExpression, IBitshiftExpression, IOverridableOperation, IExpression, IHasType, IParsedElement

public final class BitshiftExpression extends ArithmeticExpression implements IBitshiftExpression
Represents a bitshift expression in the Gosu grammar:
 bitshift-expression
   <additive-expression>
   <bitshift-expression> << <additive-expression>
   <bitsfhit-expression> >> <additive-expression>
   <bitshift-expression> >>> <additive-expression>
 

See Also:
  • Constructor Details

    • BitshiftExpression

      public BitshiftExpression()
  • Method Details