5819e4be5b
... using the RawMachineAssembler and the work in crrev.com/1407313004. The original change collided with crrev.com/1513543003. BUG=chromium:508898 LOG=Y Committed: https://crrev.com/515d9ccd8e6df7bf2ca01e2a55aaad30226399e1 Cr-Commit-Position: refs/heads/master@{#32742} patch from issue 1474543004 at patchset 260001 (http://crrev.com/1474543004#ps260001) Committed: https://crrev.com/ee5c38d7db907ff86dd4049721c0cb4bc90a6c4d Cr-Commit-Position: refs/heads/master@{#32753} patch from issue 1504713012 at patchset 20001 (http://crrev.com/1504713012#ps20001) Review URL: https://codereview.chromium.org/1518703002 Cr-Commit-Position: refs/heads/master@{#32786}
29 lines
687 B
C++
29 lines
687 B
C++
// Copyright 2015 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_API_EXPERIMENTAL_H_
|
|
#define V8_API_EXPERIMENTAL_H_
|
|
|
|
#include "src/handles.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
class Code;
|
|
} // internal;
|
|
namespace experimental {
|
|
class FastAccessorBuilder;
|
|
} // experimental
|
|
|
|
namespace internal {
|
|
namespace experimental {
|
|
|
|
v8::internal::MaybeHandle<v8::internal::Code> BuildCodeFromFastAccessorBuilder(
|
|
v8::experimental::FastAccessorBuilder* fast_handler);
|
|
|
|
} // namespace experimental
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_API_EXPERIMENTAL_H_
|