class Bindy::Language::ArgList

Public Instance Methods

to_a() click to toggle source
# File lib/bindy/language_interpreters.rb, line 47
def to_a
  [expression] | (arg_list.respond_to?(:to_a) ? arg_list.to_a : [arg_list])
end