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 142 matching lines...) Loading... |
153 class MaybeObject; | 153 class MaybeObject; |
154 class OldSpace; | 154 class OldSpace; |
155 class Property; | 155 class Property; |
156 class Foreign; | 156 class Foreign; |
157 class RegExpNode; | 157 class RegExpNode; |
158 struct RegExpCompileData; | 158 struct RegExpCompileData; |
159 class RegExpTree; | 159 class RegExpTree; |
160 class RegExpCompiler; | 160 class RegExpCompiler; |
161 class RegExpVisitor; | 161 class RegExpVisitor; |
162 class Scope; | 162 class Scope; |
163 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; | 163 class ScopeInfo; |
164 class SerializedScopeInfo; | |
165 class Script; | 164 class Script; |
166 class Slot; | 165 class Slot; |
167 class Smi; | 166 class Smi; |
168 template <typename Config, class Allocator = FreeStoreAllocationPolicy> | 167 template <typename Config, class Allocator = FreeStoreAllocationPolicy> |
169 class SplayTree; | 168 class SplayTree; |
170 class Statement; | 169 class Statement; |
171 class String; | 170 class String; |
172 class Struct; | 171 class Struct; |
173 class SwitchStatement; | 172 class SwitchStatement; |
174 class AstVisitor; | 173 class AstVisitor; |
(...skipping 377 matching lines...) Loading... |
552 | 551 |
553 enum ClearExceptionFlag { | 552 enum ClearExceptionFlag { |
554 KEEP_EXCEPTION, | 553 KEEP_EXCEPTION, |
555 CLEAR_EXCEPTION | 554 CLEAR_EXCEPTION |
556 }; | 555 }; |
557 | 556 |
558 | 557 |
559 } } // namespace v8::internal | 558 } } // namespace v8::internal |
560 | 559 |
561 #endif // V8_V8GLOBALS_H_ | 560 #endif // V8_V8GLOBALS_H_ |
OLD | NEW |