lib/dentaku/ast/grouping.rb in dentaku-3.0.0 vs lib/dentaku/ast/grouping.rb in dentaku-3.1.0
- old
+ new
@@ -3,18 +3,18 @@
class Grouping
def initialize(node)
@node = node
end
- def value(context={})
+ def value(context = {})
@node.value(context)
end
def type
@node.type
end
- def dependencies(context={})
+ def dependencies(context = {})
@node.dependencies(context)
end
end
end
end