Fix builds.

This commit is contained in:
Stephen Chung 2021-12-04 18:07:27 +08:00
parent b8c4054c20
commit 6f6380ca3a

View File

@ -501,7 +501,12 @@ fn parse_fn_call(
{ {
let index = state.find_module(&modules[0].name); let index = state.find_module(&modules[0].name);
if !settings.is_function_scope && settings.strict_var && index.is_none() { #[cfg(not(feature = "no_function"))]
let relax = settings.is_function_scope;
#[cfg(feature = "no_function")]
let relax = false;
if !relax && settings.strict_var && index.is_none() {
return Err(ParseErrorType::ModuleUndefined(modules[0].name.to_string()) return Err(ParseErrorType::ModuleUndefined(modules[0].name.to_string())
.into_err(modules[0].pos)); .into_err(modules[0].pos));
} }
@ -555,7 +560,12 @@ fn parse_fn_call(
{ {
let index = state.find_module(&modules[0].name); let index = state.find_module(&modules[0].name);
if !settings.is_function_scope && settings.strict_var && index.is_none() { #[cfg(not(feature = "no_function"))]
let relax = settings.is_function_scope;
#[cfg(feature = "no_function")]
let relax = false;
if !relax && settings.strict_var && index.is_none() {
return Err(ParseErrorType::ModuleUndefined( return Err(ParseErrorType::ModuleUndefined(
modules[0].name.to_string(), modules[0].name.to_string(),
) )
@ -1515,7 +1525,12 @@ fn parse_primary(
{ {
let index = state.find_module(&namespace[0].name); let index = state.find_module(&namespace[0].name);
if !settings.is_function_scope && settings.strict_var && index.is_none() { #[cfg(not(feature = "no_function"))]
let relax = settings.is_function_scope;
#[cfg(feature = "no_function")]
let relax = false;
if !relax && settings.strict_var && index.is_none() {
return Err( return Err(
ParseErrorType::ModuleUndefined(namespace[0].name.to_string()) ParseErrorType::ModuleUndefined(namespace[0].name.to_string())
.into_err(namespace[0].pos), .into_err(namespace[0].pos),
@ -2857,6 +2872,7 @@ fn parse_stmt(
strict_var: settings.strict_var, strict_var: settings.strict_var,
is_global: false, is_global: false,
is_function_scope: true, is_function_scope: true,
#[cfg(not(feature = "no_closure"))]
is_closure: false, is_closure: false,
is_breakable: false, is_breakable: false,
level: 0, level: 0,