class Crokus::Unary

Attributes

op[RW]
postfix[RW]
rhs[RW]

Public Class Methods

new(op,rhs,postfix=nil) click to toggle source
# File lib/crokus/ast.rb, line 365
def initialize op,rhs,postfix=nil
  @op,@rhs=op,rhs
  @postfix=postfix
end