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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 F(FunctionSetLength, 2) \ | 157 F(FunctionSetLength, 2) \ |
158 F(FunctionSetPrototype, 2) \ | 158 F(FunctionSetPrototype, 2) \ |
159 F(FunctionGetName, 1) \ | 159 F(FunctionGetName, 1) \ |
160 F(FunctionSetName, 2) \ | 160 F(FunctionSetName, 2) \ |
161 F(FunctionGetSourceCode, 1) \ | 161 F(FunctionGetSourceCode, 1) \ |
162 F(FunctionGetScript, 1) \ | 162 F(FunctionGetScript, 1) \ |
163 F(FunctionGetScriptSourcePosition, 1) \ | 163 F(FunctionGetScriptSourcePosition, 1) \ |
164 F(GetScript, 1) \ | 164 F(GetScript, 1) \ |
165 \ | 165 \ |
166 F(ClassOf, 1) \ | 166 F(ClassOf, 1) \ |
| 167 F(IsDateClass, 1) \ |
| 168 F(IsStringClass, 1) \ |
| 169 F(IsArrayClass, 1) \ |
167 F(SetCode, 2) \ | 170 F(SetCode, 2) \ |
168 \ | 171 \ |
169 F(CreateApiFunction, 1) \ | 172 F(CreateApiFunction, 1) \ |
170 F(IsTemplate, 1) \ | 173 F(IsTemplate, 1) \ |
171 F(GetTemplateField, 2) \ | 174 F(GetTemplateField, 2) \ |
172 \ | 175 \ |
173 /* Dates */ \ | 176 /* Dates */ \ |
174 F(DateCurrentTime, 0) \ | 177 F(DateCurrentTime, 0) \ |
175 F(DateParseString, 1) \ | 178 F(DateParseString, 1) \ |
176 F(DateLocalTimezone, 1) \ | 179 F(DateLocalTimezone, 1) \ |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 352 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
350 | 353 |
351 // Helper functions used stubs. | 354 // Helper functions used stubs. |
352 static void PerformGC(Object* result); | 355 static void PerformGC(Object* result); |
353 }; | 356 }; |
354 | 357 |
355 | 358 |
356 } } // namespace v8::internal | 359 } } // namespace v8::internal |
357 | 360 |
358 #endif // V8_RUNTIME_H_ | 361 #endif // V8_RUNTIME_H_ |
OLD | NEW |