Class: GraphViz::Parser::NamedGraphPreference

Inherits:
Treetop::Runtime::SyntaxNode
  • Object
show all
Defined in:
lib/graphviz/parser.rb

Instance Method Summary collapse

Instance Method Details

#eval(context) ⇒ Object



79
80
81
82
83
84
# File 'lib/graphviz/parser.rb', line 79

def eval( context )
  # puts "GRAPH PREFERENCES :"
  options.eval().each do |k,v|
    context.graph[k] = v
  end
end