chromium/v8/test/unittests/codegen/source-position-table-unittest.cc

// 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.

#include "src/codegen/source-position-table.h"

#include "test/unittests/test-utils.h"

namespace v8 {
namespace internal {
namespace interpreter {

class SourcePositionTableTest : public TestWithIsolate {};

// Some random offsets, mostly at 'suspicious' bit boundaries.
static int offsets[] =;

TEST_F(SourcePositionTableTest, EncodeStatement) {}

TEST_F(SourcePositionTableTest, EncodeStatementDuplicates) {}

TEST_F(SourcePositionTableTest, EncodeExpression) {}

TEST_F(SourcePositionTableTest, EncodeAscendingPositive) {}

TEST_F(SourcePositionTableTest, EncodeAscendingNegative) {}

}  // namespace interpreter
}  // namespace internal
}  // namespace v8