class MinFieldPropertyNode

Public Instance Methods

apply_function(operand) click to toggle source
# File lib/ast_node.rb, line 318
def apply_function(operand)
  self.root_node.graph_properties[:yMin] ||= @value.to_i
  self.root_node.graph_properties[:yMin] = @value.to_i if  self.root_node.graph_properties[:yMin] > @value.to_i 
  return operand
end