Class Java.UnaryOperation

    • Field Detail

      • operator

        public final java.lang.String operator
        The operator; either "+", "-", "~" or "!", as an interned string.
      • operand

        public final Java.Rvalue operand
        The rvalue to operate upon.
    • Constructor Detail

      • UnaryOperation

        public UnaryOperation​(Location location,
                              java.lang.String operator,
                              Java.Rvalue operand)
        Parameters:
        operator - Either "+", "-", "~" or "!"; must be an interned string!