Commit 88ce4eb5 authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

Fix build.

TBR=jochen@chromium.org

Review URL: https://codereview.chromium.org/442603004

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22848 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 62ac0d10
......@@ -11,13 +11,13 @@ namespace v8 {
namespace internal {
IsolateTest::IsolateTest() : isolate_(v8::Isolate::New()) {
ASSERT_THAT(isolate_, NotNull());
EXPECT_THAT(isolate_, NotNull());
isolate_->Enter();
}
IsolateTest::~IsolateTest() {
ASSERT_THAT(isolate_, NotNull());
EXPECT_THAT(isolate_, NotNull());
isolate_->Exit();
isolate_->Dispose();
isolate_ = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment