Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dbd2ef2

Browse files
committedJan 18, 2014
Mark loaded files
1 parent 30cec1f commit dbd2ef2

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed
 

‎lib/opal/sprockets/processor.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def evaluate(context, locals, &block)
8989
compiler.compile File.read(path), options.merge(:file => r, :requireable => true)
9090
else
9191
context.require_asset r
92-
''
92+
"Opal.loaded[#{r.inspect}] = true;"
9393
end
9494
end.join("\n")
9595

‎opal/corelib/runtime.js

+16-2
Original file line numberDiff line numberDiff line change
@@ -886,9 +886,23 @@
886886
TypeError._super = Error;
887887

888888
Opal.modules = {};
889+
Opal.loaded = {};
889890
Opal.require = function(name) {
891+
if (Opal.loaded[name]) {
892+
return false;
893+
}
894+
890895
var module;
891-
module = Opal.modules[name] || throw Opal.LoadError.$new("cannot load such file -- "+name);
892-
module(Opal);
896+
if (module = Opal.modules[name]) {
897+
Opal.loaded[name] = true;
898+
module(Opal)
899+
return true
900+
} else {
901+
if (Opal.LoadError) {
902+
throw Opal.LoadError.$new("cannot load such file -- "+name);
903+
} else {
904+
throw("cannot load such file -- "+name);
905+
}
906+
}
893907
}
894908
}).call(this);

0 commit comments

Comments
 (0)
Please sign in to comment.