module TOML::InlineTableArrayParser
def value
def value tables = captures[:inline_table_array_elements].map do |x| x.captures[:inline_table] end TOML::InlineTableArray.new(tables.flatten.map(&:value)).value end
def value tables = captures[:inline_table_array_elements].map do |x| x.captures[:inline_table] end TOML::InlineTableArray.new(tables.flatten.map(&:value)).value end