# File lib/puppet/parser/type_loader.rb, line 10
10:     def initialize
11:       super
12:       # These hashes are indexed by filename
13:       @state = {} # :doing or :done
14:       @thread = {} # if :doing, thread that's doing the parsing
15:       @cond_var = {} # if :doing, condition var that will be signaled when done.
16:     end