class TomlRB::TableArray
Public Class Methods
new(dotted_keys)
click to toggle source
# File lib/toml-rb/table_array.rb, line 3 def initialize(dotted_keys) @dotted_keys = dotted_keys end
Public Instance Methods
accept_visitor(parser)
click to toggle source
# File lib/toml-rb/table_array.rb, line 35 def accept_visitor(parser) parser.visit_table_array self end
full_key()
click to toggle source
# File lib/toml-rb/table_array.rb, line 39 def full_key @dotted_keys.join('.') end