| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 F(DisableAccessChecks, 1, 1) \ | 196 F(DisableAccessChecks, 1, 1) \ |
| 197 F(EnableAccessChecks, 1, 1) \ | 197 F(EnableAccessChecks, 1, 1) \ |
| 198 \ | 198 \ |
| 199 /* Dates */ \ | 199 /* Dates */ \ |
| 200 F(DateCurrentTime, 0, 1) \ | 200 F(DateCurrentTime, 0, 1) \ |
| 201 F(DateParseString, 2, 1) \ | 201 F(DateParseString, 2, 1) \ |
| 202 F(DateLocalTimezone, 1, 1) \ | 202 F(DateLocalTimezone, 1, 1) \ |
| 203 F(DateLocalTimeOffset, 0, 1) \ | 203 F(DateLocalTimeOffset, 0, 1) \ |
| 204 F(DateDaylightSavingsOffset, 1, 1) \ | 204 F(DateDaylightSavingsOffset, 1, 1) \ |
| 205 F(DateMakeDay, 3, 1) \ | 205 F(DateMakeDay, 3, 1) \ |
| 206 F(DateYMDFromTime, 2, 1) \ |
| 206 \ | 207 \ |
| 207 /* Numbers */ \ | 208 /* Numbers */ \ |
| 208 F(NumberIsFinite, 1, 1) \ | 209 F(NumberIsFinite, 1, 1) \ |
| 209 \ | 210 \ |
| 210 /* Globals */ \ | 211 /* Globals */ \ |
| 211 F(CompileString, 2, 1) \ | 212 F(CompileString, 2, 1) \ |
| 212 F(GlobalPrint, 1, 1) \ | 213 F(GlobalPrint, 1, 1) \ |
| 213 \ | 214 \ |
| 214 /* Eval */ \ | 215 /* Eval */ \ |
| 215 F(GlobalReceiver, 1, 1) \ | 216 F(GlobalReceiver, 1, 1) \ |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 int position); | 432 int position); |
| 432 | 433 |
| 433 // Helper functions used stubs. | 434 // Helper functions used stubs. |
| 434 static void PerformGC(Object* result); | 435 static void PerformGC(Object* result); |
| 435 }; | 436 }; |
| 436 | 437 |
| 437 | 438 |
| 438 } } // namespace v8::internal | 439 } } // namespace v8::internal |
| 439 | 440 |
| 440 #endif // V8_RUNTIME_H_ | 441 #endif // V8_RUNTIME_H_ |
| OLD | NEW |