class Metamorpher::Terms::Variable

Constants

DEFAULT_CONDITION

Public Instance Methods

inspect() click to toggle source
# File lib/metamorpher/terms/variable.rb, line 10
def inspect
  name.to_s.upcase +
    (greedy? ? "+" : "") +
    (condition != DEFAULT_CONDITION ? "?" : "")
end