LibJS: Add FunctionObject::fast_is<NativeFunction>()

This commit is contained in:
Aliaksandr Kalenik 2025-09-25 18:13:11 +02:00 committed by Alexander Kalenik
parent b549d51cdc
commit 88d8380920
Notes: github-actions[bot] 2025-09-26 15:26:56 +00:00

View file

@ -72,4 +72,7 @@ private:
template<>
inline bool Object::fast_is<NativeFunction>() const { return is_native_function(); }
template<>
inline bool FunctionObject::fast_is<NativeFunction>() const { return is_native_function(); }
}