Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Unified Diff: src/api-experimental.h

Issue 1474543004: Implement Fast Accessor Builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove impl_ cleanup. Drop tests for --optimize-for-size. Also rebase. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/api.cc ('k') | src/api-experimental.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/api-experimental.h
diff --git a/src/api-experimental.h b/src/api-experimental.h
new file mode 100644
index 0000000000000000000000000000000000000000..bc0bc55739b503ca0cbe37d698627a081882b1d7
--- /dev/null
+++ b/src/api-experimental.h
@@ -0,0 +1,28 @@
+// 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_
« no previous file with comments | « src/api.cc ('k') | src/api-experimental.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698