// Copyright 2016 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. #ifndef V8_INTERPRETER_HANDLER_TABLE_BUILDER_H_ #define V8_INTERPRETER_HANDLER_TABLE_BUILDER_H_ #include "src/codegen/handler-table.h" #include "src/interpreter/bytecode-register.h" #include "src/objects/fixed-array.h" #include "src/zone/zone-containers.h" namespace v8 { namespace internal { class HandlerTable; namespace interpreter { // A helper class for constructing exception handler tables for the interpreter. class V8_EXPORT_PRIVATE HandlerTableBuilder final { … }; } // namespace interpreter } // namespace internal } // namespace v8 #endif // V8_INTERPRETER_HANDLER_TABLE_BUILDER_H_