class DrgDSL::Ast::FunctionCall
“Komplizierende_Prozeduren”, “Dialyse”, …
Attributes
name[R]
Public Class Methods
new(name)
click to toggle source
# File lib/drgdsl/ast.rb, line 172 def initialize(name) @name = name.to_s.strip end
Public Instance Methods
hash()
click to toggle source
# File lib/drgdsl/ast.rb, line 180 def hash @hash ||= [type, name].hash end
to_hash()
click to toggle source
# File lib/drgdsl/ast.rb, line 176 def to_hash { function_call: name } end