// Copyright 2015 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/interpreter/bytecode-decoder.h" #include <iomanip> #include <vector> #include "src/init/v8.h" #include "src/objects/contexts.h" #include "src/runtime/runtime.h" #include "test/unittests/interpreter/bytecode-utils.h" #include "test/unittests/test-utils.h" namespace v8 { namespace internal { namespace interpreter { #define B … TEST(BytecodeDecoder, DecodeBytecodeAndOperands) { … } #undef B } // namespace interpreter } // namespace internal } // namespace v8