Method: Dhall::Import#with

Defined in:
lib/dhall/ast.rb

#with(options) ⇒ Object



1731
1732
1733
1734
1735
1736
1737
# File 'lib/dhall/ast.rb', line 1731

def with(options)
	self.class.new(
		options.fetch(:integrity_check, integrity_check),
		options.fetch(:import_type, import_type),
		options.fetch(:path, path)
	)
end