mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:18:12 +00:00
LibJS: Forgot to move add/sub/typed_eq to Value.cpp
This commit is contained in:
parent
f3a9eba987
commit
0d42097cf1
3 changed files with 43 additions and 37 deletions
|
@ -166,6 +166,9 @@ Value bitwise_xor(Value lhs, Value rhs);
|
|||
Value bitwise_not(Value);
|
||||
Value left_shift(Value lhs, Value rhs);
|
||||
Value right_shift(Value lhs, Value rhs);
|
||||
Value add(Value lhs, Value rhs);
|
||||
Value sub(Value lhs, Value rhs);
|
||||
Value typed_eq(Value lhs, Value rhs);
|
||||
|
||||
const LogStream& operator<<(const LogStream&, const Value&);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue