1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

LibJS: Rename PrimitiveString::m_{left,right} to m_{lhs,rhs}

The LHS/RHS naming is already widely used as parameter names and local
variables with the same meaning, so let's also use them for the members.
This commit is contained in:
Linus Groh 2022-08-06 01:06:02 +01:00 committed by Andreas Kling
parent 885004abee
commit 12edbb51bc
2 changed files with 18 additions and 18 deletions

View file

@ -46,8 +46,8 @@ private:
mutable bool m_has_utf8_string { false };
mutable bool m_has_utf16_string { false };
mutable PrimitiveString* m_left { nullptr };
mutable PrimitiveString* m_right { nullptr };
mutable PrimitiveString* m_lhs { nullptr };
mutable PrimitiveString* m_rhs { nullptr };
mutable String m_utf8_string;