OLD | NEW |
---|---|
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
161 F(FunctionSetName, 2) \ | 161 F(FunctionSetName, 2) \ |
162 F(FunctionGetSourceCode, 1) \ | 162 F(FunctionGetSourceCode, 1) \ |
163 F(FunctionGetScript, 1) \ | 163 F(FunctionGetScript, 1) \ |
164 F(FunctionGetScriptSourcePosition, 1) \ | 164 F(FunctionGetScriptSourcePosition, 1) \ |
165 F(GetScript, 1) \ | 165 F(GetScript, 1) \ |
166 \ | 166 \ |
167 F(ClassOf, 1) \ | 167 F(ClassOf, 1) \ |
168 F(IsDateClass, 1) \ | 168 F(IsDateClass, 1) \ |
169 F(IsStringClass, 1) \ | 169 F(IsStringClass, 1) \ |
170 F(IsArrayClass, 1) \ | 170 F(IsArrayClass, 1) \ |
171 F(IsFunctionClass, 1) \ | |
172 F(IsNumberClass, 1) \ | |
173 F(IsBooleanClass, 1) \ | |
Mads Ager (chromium)
2008/10/17 11:19:11
Shouldn't these be called HasXYZClass?
| |
174 F(IsArgumentsClass, 1) \ | |
171 F(SetCode, 2) \ | 175 F(SetCode, 2) \ |
172 \ | 176 \ |
173 F(CreateApiFunction, 1) \ | 177 F(CreateApiFunction, 1) \ |
174 F(IsTemplate, 1) \ | 178 F(IsTemplate, 1) \ |
175 F(GetTemplateField, 2) \ | 179 F(GetTemplateField, 2) \ |
176 \ | 180 \ |
177 /* Dates */ \ | 181 /* Dates */ \ |
178 F(DateCurrentTime, 0) \ | 182 F(DateCurrentTime, 0) \ |
179 F(DateParseString, 1) \ | 183 F(DateParseString, 1) \ |
180 F(DateLocalTimezone, 1) \ | 184 F(DateLocalTimezone, 1) \ |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
353 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 357 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
354 | 358 |
355 // Helper functions used stubs. | 359 // Helper functions used stubs. |
356 static void PerformGC(Object* result); | 360 static void PerformGC(Object* result); |
357 }; | 361 }; |
358 | 362 |
359 | 363 |
360 } } // namespace v8::internal | 364 } } // namespace v8::internal |
361 | 365 |
362 #endif // V8_RUNTIME_H_ | 366 #endif // V8_RUNTIME_H_ |
OLD | NEW |