Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Side by Side Diff: src/api.h

Issue 186723005: New Compilation API, part 1 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: . Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/shell.cc ('k') | src/api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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, Object) \ 186 V(Script, JSFunction) \
187 V(UnboundScript, SharedFunctionInfo) \
187 V(Function, JSFunction) \ 188 V(Function, JSFunction) \
188 V(Message, JSObject) \ 189 V(Message, JSObject) \
189 V(Context, Context) \ 190 V(Context, Context) \
190 V(External, Foreign) \ 191 V(External, Foreign) \
191 V(StackTrace, JSArray) \ 192 V(StackTrace, JSArray) \
192 V(StackFrame, JSObject) \ 193 V(StackFrame, JSObject) \
193 V(DeclaredAccessorDescriptor, DeclaredAccessorDescriptor) 194 V(DeclaredAccessorDescriptor, DeclaredAccessorDescriptor)
194 195
195 196
196 class Utils { 197 class Utils {
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 stress_type_ = stress_type; 709 stress_type_ = stress_type;
709 } 710 }
710 711
711 private: 712 private:
712 static v8::Testing::StressType stress_type_; 713 static v8::Testing::StressType stress_type_;
713 }; 714 };
714 715
715 } } // namespace v8::internal 716 } } // namespace v8::internal
716 717
717 #endif // V8_API_H_ 718 #endif // V8_API_H_
OLDNEW
« no previous file with comments | « samples/shell.cc ('k') | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698