summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/ext/syck/lib/syck/loader.rb
blob: 925c9ee4b2535f4153b7d46cc2e5e7a7e1330a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# YAML::Loader class
# .. type handling ..
#
module Syck
    class Loader
        TRANSFER_DOMAINS = {
            'yaml.org,2002' => {},
            'ruby.yaml.org,2002' => {}
        }
        PRIVATE_TYPES = {}
        IMPLICIT_TYPES = [ 'null', 'bool', 'time', 'int', 'float' ]
    end
end