class GraphArgsGlobalDeclarationNode
Public Instance Methods
compile()
click to toggle source
# File lib/ast_node.rb, line 152 def compile if @raw_data =~ /--base\ (\d+)/ self.root_node.properties[:base] = $1.to_i end if @raw_data =~ /.*logarithmic.*/ self.root_node.properties[:logarithmic] = true end end