| 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 30 matching lines...) Expand all Loading... |
| 41 #undef NDEBUG | 41 #undef NDEBUG |
| 42 #endif | 42 #endif |
| 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 // TODO(dcarney): remove this | |
| 52 #define V8_ALLOW_ACCESS_TO_RAW_HANDLE_CONSTRUCTOR | |
| 53 | |
| 54 // Basic includes | 51 // Basic includes |
| 55 #include "../include/v8.h" | 52 #include "../include/v8.h" |
| 56 #include "v8globals.h" | 53 #include "v8globals.h" |
| 57 #include "v8checks.h" | 54 #include "v8checks.h" |
| 58 #include "allocation.h" | 55 #include "allocation.h" |
| 59 #include "assert-scope.h" | 56 #include "assert-scope.h" |
| 60 #include "v8utils.h" | 57 #include "v8utils.h" |
| 61 #include "flags.h" | 58 #include "flags.h" |
| 62 | 59 |
| 63 // Objects & heap | 60 // Objects & heap |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 152 |
| 156 // JavaScript defines two kinds of 'nil'. | 153 // JavaScript defines two kinds of 'nil'. |
| 157 enum NilValue { kNullValue, kUndefinedValue }; | 154 enum NilValue { kNullValue, kUndefinedValue }; |
| 158 | 155 |
| 159 | 156 |
| 160 } } // namespace v8::internal | 157 } } // namespace v8::internal |
| 161 | 158 |
| 162 namespace i = v8::internal; | 159 namespace i = v8::internal; |
| 163 | 160 |
| 164 #endif // V8_V8_H_ | 161 #endif // V8_V8_H_ |
| OLD | NEW |