Do not load if already loaded In case the resolver has some values already
1 files changed, 2 insertions(+), 0 deletions(-) M lib/dhall/ast.rb
M lib/dhall/ast.rb => lib/dhall/ast.rb +2 -0
@@ 1445,6 1445,8 @@ module Dhall class Expression def self.call(import_value) + return import_value if import_value.is_a?(Dhall::Expression) + Dhall.load_raw(import_value) end end