diff options
author | Moonchild <moonchild@palemoon.org> | 2020-08-27 15:44:53 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-09-08 11:04:36 +0000 |
commit | ddc43bf9d7009a5d3b2ff84688450540b8eff84e (patch) | |
tree | c1599d4eb1a4d087871341b4801529c75d452c6c /dom/script/ModuleLoadRequest.h | |
parent | 5819a1a5256e356caf4c38937610ac9e29e1c701 (diff) | |
download | UXP-ddc43bf9d7009a5d3b2ff84688450540b8eff84e.tar UXP-ddc43bf9d7009a5d3b2ff84688450540b8eff84e.tar.gz UXP-ddc43bf9d7009a5d3b2ff84688450540b8eff84e.tar.lz UXP-ddc43bf9d7009a5d3b2ff84688450540b8eff84e.tar.xz UXP-ddc43bf9d7009a5d3b2ff84688450540b8eff84e.zip |
Issue #618 - Implement preloading of module scripts.
This hooks up module scripts to the existing preload mechanism.
Diffstat (limited to 'dom/script/ModuleLoadRequest.h')
-rw-r--r-- | dom/script/ModuleLoadRequest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/script/ModuleLoadRequest.h b/dom/script/ModuleLoadRequest.h index eefb7dad5..4eac65090 100644 --- a/dom/script/ModuleLoadRequest.h +++ b/dom/script/ModuleLoadRequest.h @@ -56,7 +56,7 @@ public: ModuleLoadRequest(nsIURI* aURI, ModuleLoadRequest* aParent); - bool IsTopLevel() const { + bool IsTopLevel() const override { return mIsTopLevel; } |