Method: RBS::Types::Application#free_variables

Defined in:
lib/rbs/types.rb

#free_variables(set = Set.new) ⇒ Object



193
194
195
196
197
198
199
# File 'lib/rbs/types.rb', line 193

def free_variables(set = Set.new)
  set.tap do
    args.each do |arg|
      arg.free_variables(set)
    end
  end
end