# File lib/parslet/atoms/can_flatten.rb, line 49 def foldl(list, &block) return '' if list.empty? list[1..-1].inject(list.first, &block) end