// Copyright 2019 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/regexp/regexp-bytecodes.h" #include <cctype> #include "src/utils/utils.h" namespace v8 { namespace internal { void RegExpBytecodeDisassembleSingle(const uint8_t* code_base, const uint8_t* pc) { … } void RegExpBytecodeDisassemble(const uint8_t* code_base, int length, const char* pattern) { … } } // namespace internal } // namespace v8