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

LibJS: Add AbstractInequals bytecode instruction :^)

This commit is contained in:
Andreas Kling 2021-06-04 12:18:06 +02:00
parent 6ae9346cd3
commit bd1a5e282a
3 changed files with 32 additions and 0 deletions

View file

@ -89,6 +89,25 @@ private:
Register m_src2;
};
class AbstractInequals final : public Instruction {
public:
AbstractInequals(Register dst, Register src1, Register src2)
: m_dst(dst)
, m_src1(src1)
, m_src2(src2)
{
}
virtual ~AbstractInequals() override { }
virtual void execute(Bytecode::Interpreter&) const override;
virtual String to_string() const override;
private:
Register m_dst;
Register m_src1;
Register m_src2;
};
class NewString final : public Instruction {
public:
NewString(Register dst, String string)