// Copyright 2014 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/codegen/bailout-reason.h" #include "src/base/logging.h" #include "src/sandbox/check.h" namespace v8 { namespace internal { #define ERROR_MESSAGES_TEXTS … const char* GetBailoutReason(BailoutReason reason) { … } const char* GetAbortReason(AbortReason reason) { … } bool IsValidAbortReason(int reason_id) { … } #undef ERROR_MESSAGES_TEXTS } // namespace internal } // namespace v8