Index: src/objects-body-descriptors-fwd.h |
diff --git a/src/objects-body-descriptors-fwd.h b/src/objects-body-descriptors-fwd.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b9a2d0009e18a31d9512629662b70ed4a00a92b7 |
--- /dev/null |
+++ b/src/objects-body-descriptors-fwd.h |
@@ -0,0 +1,25 @@ |
+// 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_OBJECTS_BODY_DESCRIPTORS_FWD_H_ |
Michael Starzinger
2015/11/13 10:58:54
I am not a fan of yet another family of header fil
Igor Sheludko
2015/11/13 11:23:51
Done.
|
+#define V8_OBJECTS_BODY_DESCRIPTORS_FWD_H_ |
+ |
+namespace v8 { |
+namespace internal { |
+ |
+template <int start_offset, int end_offset, int size> |
+class FixedBodyDescriptor; |
+ |
+ |
+template <int start_offset, int end_offset, int size> |
+class FixedBodyDescriptor; |
+ |
+ |
+template <int start_offset> |
+class FlexibleBodyDescriptor; |
+ |
+} // namespace internal |
+} // namespace v8 |
+ |
+#endif // V8_OBJECTS_BODY_DESCRIPTORS_FWD_H_ |