Class: MinFieldPropertyNode

Inherits:
FieldPropertyNode show all
Defined in:
lib/ast_node.rb

Constant Summary

Constants inherited from ASTNode

ASTNode::DEFAULT_GRAPH_PROPERTIES, ASTNode::METRIC_PROC_FUNCTIONS

Instance Attribute Summary

Attributes inherited from FieldPropertyNode

#metric

Attributes inherited from ASTNode

#children, #graph_properties, #parent, #properties, #root_node

Instance Method Summary collapse

Methods inherited from FieldPropertyNode

#initialize

Methods inherited from ASTNode

#add_child, #children_of_class, #compile, #config=, #default_colors, #initialize, #process_variables, #properties_to_url, #root?, #targets, #to_gdash, #url

Constructor Details

This class inherits a constructor from FieldPropertyNode

Instance Method Details

#apply_function(operand) ⇒ Object



318
319
320
321
322
# 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