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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 V(Int8Array, JSTypedArray) \ | 176 V(Int8Array, JSTypedArray) \ |
177 V(Uint16Array, JSTypedArray) \ | 177 V(Uint16Array, JSTypedArray) \ |
178 V(Int16Array, JSTypedArray) \ | 178 V(Int16Array, JSTypedArray) \ |
179 V(Uint32Array, JSTypedArray) \ | 179 V(Uint32Array, JSTypedArray) \ |
180 V(Int32Array, JSTypedArray) \ | 180 V(Int32Array, JSTypedArray) \ |
181 V(Float32Array, JSTypedArray) \ | 181 V(Float32Array, JSTypedArray) \ |
182 V(Float64Array, JSTypedArray) \ | 182 V(Float64Array, JSTypedArray) \ |
183 V(DataView, JSDataView) \ | 183 V(DataView, JSDataView) \ |
184 V(String, String) \ | 184 V(String, String) \ |
185 V(Symbol, Symbol) \ | 185 V(Symbol, Symbol) \ |
186 V(Script, JSFunction) \ | 186 V(Script, Object) \ |
187 V(UnboundScript, SharedFunctionInfo) \ | |
188 V(Function, JSFunction) \ | 187 V(Function, JSFunction) \ |
189 V(Message, JSObject) \ | 188 V(Message, JSObject) \ |
190 V(Context, Context) \ | 189 V(Context, Context) \ |
191 V(External, Foreign) \ | 190 V(External, Foreign) \ |
192 V(StackTrace, JSArray) \ | 191 V(StackTrace, JSArray) \ |
193 V(StackFrame, JSObject) \ | 192 V(StackFrame, JSObject) \ |
194 V(DeclaredAccessorDescriptor, DeclaredAccessorDescriptor) | 193 V(DeclaredAccessorDescriptor, DeclaredAccessorDescriptor) |
195 | 194 |
196 | 195 |
197 class Utils { | 196 class Utils { |
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 stress_type_ = stress_type; | 708 stress_type_ = stress_type; |
710 } | 709 } |
711 | 710 |
712 private: | 711 private: |
713 static v8::Testing::StressType stress_type_; | 712 static v8::Testing::StressType stress_type_; |
714 }; | 713 }; |
715 | 714 |
716 } } // namespace v8::internal | 715 } } // namespace v8::internal |
717 | 716 |
718 #endif // V8_API_H_ | 717 #endif // V8_API_H_ |
OLD | NEW |