Instruction.cpp 214 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJS/Bytecode/Instruction.h>
  7. namespace JS::Bytecode {
  8. Instruction::~Instruction()
  9. {
  10. }
  11. }