зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1651880 - Part 7: Use FunctionFlags for detecting function. r=tcampbell
Differential Revision: https://phabricator.services.mozilla.com/D83077
This commit is contained in:
Родитель
8d9d7e563b
Коммит
5f38bce265
|
@ -410,8 +410,9 @@ class ScriptStencil {
|
|||
void trace(JSTracer* trc);
|
||||
|
||||
bool isFunction() const {
|
||||
return functionFlags.isAsmJSNative() ||
|
||||
immutableFlags.hasFlag(ImmutableScriptFlagsEnum::IsFunction);
|
||||
MOZ_ASSERT_IF(!!functionFlags.toRaw(), functionFlags.isAsmJSNative() ||
|
||||
functionFlags.hasBaseScript());
|
||||
return !!functionFlags.toRaw();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче