chromium/v8/test/unittests/compiler/run-deopt-unittest.cc

// 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 "include/v8-function.h"
#include "src/execution/frames-inl.h"
#include "test/unittests/compiler/function-tester.h"
#include "test/unittests/test-utils.h"

namespace v8 {
namespace internal {
namespace compiler {

static void IsOptimized(const v8::FunctionCallbackInfo<v8::Value>& info) {}

class RunDeoptTest : public TestWithContext {};

TEST_F(RunDeoptTest, DeoptSimple) {}

TEST_F(RunDeoptTest, DeoptSimpleInExpr) {}

TEST_F(RunDeoptTest, DeoptExceptionHandlerCatch) {}

TEST_F(RunDeoptTest, DeoptExceptionHandlerFinally) {}

TEST_F(RunDeoptTest, DeoptTrivial) {}

}  // namespace compiler
}  // namespace internal
}  // namespace v8