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:
parent
885004abee
commit
12edbb51bc
2 changed files with 18 additions and 18 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue