mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:17:36 +00:00
LibJS: Remove Value::to_deprecated_string_without_side_effects
This commit is contained in:
parent
a2f1b80c36
commit
ba40ef1f3a
2 changed files with 0 additions and 6 deletions
|
@ -395,11 +395,6 @@ ErrorOr<String> Value::to_string_without_side_effects() const
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DeprecatedString Value::to_deprecated_string_without_side_effects() const
|
|
||||||
{
|
|
||||||
return MUST(to_string_without_side_effects()).to_deprecated_string();
|
|
||||||
}
|
|
||||||
|
|
||||||
ThrowCompletionOr<PrimitiveString*> Value::to_primitive_string(VM& vm)
|
ThrowCompletionOr<PrimitiveString*> Value::to_primitive_string(VM& vm)
|
||||||
{
|
{
|
||||||
if (is_string())
|
if (is_string())
|
||||||
|
|
|
@ -395,7 +395,6 @@ public:
|
||||||
ThrowCompletionOr<FunctionObject*> get_method(VM&, PropertyKey const&) const;
|
ThrowCompletionOr<FunctionObject*> get_method(VM&, PropertyKey const&) const;
|
||||||
|
|
||||||
ErrorOr<String> to_string_without_side_effects() const;
|
ErrorOr<String> to_string_without_side_effects() const;
|
||||||
DeprecatedString to_deprecated_string_without_side_effects() const;
|
|
||||||
|
|
||||||
Value value_or(Value fallback) const
|
Value value_or(Value fallback) const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue