OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 class Assembler; | 118 class Assembler; |
119 class AssertNoAllocation; | 119 class AssertNoAllocation; |
120 class Code; | 120 class Code; |
121 class CodeGenerator; | 121 class CodeGenerator; |
122 class CodeStub; | 122 class CodeStub; |
123 class Context; | 123 class Context; |
124 class Debug; | 124 class Debug; |
125 class Debugger; | 125 class Debugger; |
126 class DebugInfo; | 126 class DebugInfo; |
127 class Descriptor; | 127 class Descriptor; |
| 128 class HiddenPropertiesArray; |
128 class DescriptorArray; | 129 class DescriptorArray; |
129 class TransitionArray; | 130 class TransitionArray; |
130 class ExternalReference; | 131 class ExternalReference; |
131 class FixedArray; | 132 class FixedArray; |
132 class FunctionTemplateInfo; | 133 class FunctionTemplateInfo; |
133 class MemoryChunk; | 134 class MemoryChunk; |
134 class SeededNumberDictionary; | 135 class SeededNumberDictionary; |
135 class UnseededNumberDictionary; | 136 class UnseededNumberDictionary; |
136 class StringDictionary; | 137 class StringDictionary; |
137 template <typename T> class Handle; | 138 template <typename T> class Handle; |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 | 549 |
549 enum ClearExceptionFlag { | 550 enum ClearExceptionFlag { |
550 KEEP_EXCEPTION, | 551 KEEP_EXCEPTION, |
551 CLEAR_EXCEPTION | 552 CLEAR_EXCEPTION |
552 }; | 553 }; |
553 | 554 |
554 | 555 |
555 } } // namespace v8::internal | 556 } } // namespace v8::internal |
556 | 557 |
557 #endif // V8_V8GLOBALS_H_ | 558 #endif // V8_V8GLOBALS_H_ |
OLD | NEW |