fuel-plugin-sensu/deployment_scripts/puppet/files/embedded/lib/ruby/gems/2.3.0/gems/dentaku-2.0.9/lib/dentaku/ast/grouping.rb

22 lines
318 B
Ruby

module Dentaku
module AST
class Grouping
def initialize(node)
@node = node
end
def value(context={})
@node.value(context)
end
def type
@node.type
end
def dependencies(context={})
@node.dependencies(context)
end
end
end
end