aboutsummaryrefslogtreecommitdiffstats
path: root/lib/script_entries/scripts_cache.js
diff options
context:
space:
mode:
authorNik Nyby <nikolas@gnu.org>2015-06-16 19:56:11 -0400
committerNik Nyby <nikolas@gnu.org>2015-06-16 19:56:11 -0400
commite5bd270b6b4692bad78561a4baf81c5d341f4790 (patch)
treeff67bc27c5b8404934a51760462f4b8524904c9b /lib/script_entries/scripts_cache.js
parent2f5fb8daea978418dbfa936e3d32bd9d53579a78 (diff)
downloadlibrejsxul-e5bd270b6b4692bad78561a4baf81c5d341f4790.tar.lz
librejsxul-e5bd270b6b4692bad78561a4baf81c5d341f4790.tar.xz
librejsxul-e5bd270b6b4692bad78561a4baf81c5d341f4790.zip
Resolve circular dependency btw free_libraries and scripts_cached
Diffstat (limited to 'lib/script_entries/scripts_cache.js')
-rw-r--r--lib/script_entries/scripts_cache.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/script_entries/scripts_cache.js b/lib/script_entries/scripts_cache.js
index 47ab069..dfc5e6a 100644
--- a/lib/script_entries/scripts_cache.js
+++ b/lib/script_entries/scripts_cache.js
@@ -19,11 +19,7 @@
* You should have received a copy of the GNU General Public License
* along with GNU LibreJS. If not, see <http://www.gnu.org/licenses/>.
*/
-var relationCheckerObj = require("js_checker/relation_checker")
- .relationChecker;
-
-// import free_libraries to populate the cache hash map.
-var free_libraries = require("script_entries/free_libraries");
+var relationChecker = require("js_checker/relation_checker").relationChecker;
var crypto = require('script_entries/crypto');
const checkTypes = require("js_checker/constant_types").checkTypes;
@@ -52,6 +48,8 @@ ScriptsCached.prototype.getHash = function(scriptText) {
*/
ScriptsCached.prototype.resetCache = function () {
cachedResults = {};
+ // import free_libraries to populate the cache hash map.
+ var free_libraries = require("script_entries/free_libraries");
free_libraries.init();
};
@@ -64,11 +62,12 @@ ScriptsCached.prototype.resetCache = function () {
*
*/
ScriptsCached.prototype.addEntry = function(
- scriptText, result, relationChecker, allowTrivial, url) {
+ scriptText, result, relationCheckerObj, allowTrivial, url
+) {
console.debug("result addEntry is", JSON.stringify(result));
cachedResults[this.getHash(scriptText)] = {
'result': result,
- 'relationChecker': relationCheckerObj(),
+ 'relationChecker': relationChecker(),
'allowTrivial': allowTrivial,
'url': url
};