mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:27:45 +00:00
LibJS: Implement 'in' operator
This commit is contained in:
parent
396ecfa2d7
commit
11728b7db5
6 changed files with 54 additions and 0 deletions
|
@ -222,6 +222,7 @@ Value mod(Interpreter&, Value lhs, Value rhs);
|
|||
Value exp(Interpreter&, Value lhs, Value rhs);
|
||||
Value eq(Interpreter&, Value lhs, Value rhs);
|
||||
Value typed_eq(Interpreter&, Value lhs, Value rhs);
|
||||
Value in(Interpreter&, Value lhs, Value rhs);
|
||||
Value instance_of(Interpreter&, Value lhs, Value rhs);
|
||||
|
||||
const LogStream& operator<<(const LogStream&, const Value&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue