OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #endif // defined(GOOGLE3) | 43 #endif // defined(GOOGLE3) |
44 | 44 |
45 // V8 only uses DEBUG, but included external files | 45 // V8 only uses DEBUG, but included external files |
46 // may use NDEBUG - make sure they are consistent. | 46 // may use NDEBUG - make sure they are consistent. |
47 #if defined(DEBUG) && defined(NDEBUG) | 47 #if defined(DEBUG) && defined(NDEBUG) |
48 #error both DEBUG and NDEBUG are set | 48 #error both DEBUG and NDEBUG are set |
49 #endif | 49 #endif |
50 | 50 |
51 // Basic includes | 51 // Basic includes |
52 #include "../include/v8.h" | 52 #include "../include/v8.h" |
| 53 #include "../include/v8-platform.h" |
53 #include "v8globals.h" | 54 #include "v8globals.h" |
54 #include "v8checks.h" | 55 #include "v8checks.h" |
55 #include "allocation.h" | 56 #include "allocation.h" |
56 #include "assert-scope.h" | 57 #include "assert-scope.h" |
57 #include "v8utils.h" | 58 #include "v8utils.h" |
58 #include "flags.h" | 59 #include "flags.h" |
59 | 60 |
60 // Objects & heap | 61 // Objects & heap |
61 #include "objects-inl.h" | 62 #include "objects-inl.h" |
62 #include "spaces-inl.h" | 63 #include "spaces-inl.h" |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 | 125 |
125 // JavaScript defines two kinds of 'nil'. | 126 // JavaScript defines two kinds of 'nil'. |
126 enum NilValue { kNullValue, kUndefinedValue }; | 127 enum NilValue { kNullValue, kUndefinedValue }; |
127 | 128 |
128 | 129 |
129 } } // namespace v8::internal | 130 } } // namespace v8::internal |
130 | 131 |
131 namespace i = v8::internal; | 132 namespace i = v8::internal; |
132 | 133 |
133 #endif // V8_V8_H_ | 134 #endif // V8_V8_H_ |
OLD | NEW |