Fix builds.

This commit is contained in:
Stephen Chung
2022-04-18 23:24:08 +08:00
parent 60a933862e
commit f9ee0c29be
2 changed files with 7 additions and 8 deletions

View File

@@ -63,9 +63,7 @@ impl Engine {
self.search_scope_only(scope, global, lib, this_ptr, expr, level)
}
#[cfg(feature = "no_module")]
(_, (), ..) => {
self.search_scope_only(scope, global, caches, lib, this_ptr, expr, level)
}
(_, (), ..) => self.search_scope_only(scope, global, lib, this_ptr, expr, level),
// Qualified variable access
#[cfg(not(feature = "no_module"))]