| OLD | NEW |
| 1 # Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 # Copyright 2006-2009 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 const REGEXP_NUMBER_OF_CAPTURES = 0; | 111 const REGEXP_NUMBER_OF_CAPTURES = 0; |
| 112 const REGEXP_FIRST_CAPTURE = 3; | 112 const REGEXP_FIRST_CAPTURE = 3; |
| 113 | 113 |
| 114 # We can't put macros in macros so we use constants here. | 114 # We can't put macros in macros so we use constants here. |
| 115 # REGEXP_NUMBER_OF_CAPTURES | 115 # REGEXP_NUMBER_OF_CAPTURES |
| 116 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); | 116 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); |
| 117 | 117 |
| 118 # Gets the value of a Date object. If arg is not a Date object | 118 # Gets the value of a Date object. If arg is not a Date object |
| 119 # a type error is thrown. | 119 # a type error is thrown. |
| 120 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT
ypeError()); | 120 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT
ypeError()); |
| 121 macro DAY(time) = ($floor(time / 86400000)); |
| 122 macro MONTH_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588
).month); |
| 123 macro DATE_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588)
.date); |
| 124 macro YEAR_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588)
.year); |
| 125 macro HOUR_FROM_TIME(time) = (Modulo($floor(time / 3600000), 24)); |
| 126 macro MIN_FROM_TIME(time) = (Modulo($floor(time / 60000), 60)); |
| 127 macro SEC_FROM_TIME(time) = (Modulo($floor(time / 1000), 60)); |
| 128 macro MS_FROM_TIME(time) = (Modulo(time, 1000)); |
| 121 | 129 |
| 122 # Last input and last subject of regexp matches. | 130 # Last input and last subject of regexp matches. |
| 123 macro LAST_SUBJECT(array) = ((array)[1]); | 131 macro LAST_SUBJECT(array) = ((array)[1]); |
| 124 macro LAST_INPUT(array) = ((array)[2]); | 132 macro LAST_INPUT(array) = ((array)[2]); |
| 125 | 133 |
| 126 # REGEXP_FIRST_CAPTURE | 134 # REGEXP_FIRST_CAPTURE |
| 127 macro CAPTURE(index) = (3 + (index)); | 135 macro CAPTURE(index) = (3 + (index)); |
| 128 const CAPTURE0 = 3; | 136 const CAPTURE0 = 3; |
| 129 const CAPTURE1 = 4; | 137 const CAPTURE1 = 4; |
| OLD | NEW |