Revision: 4149 Author: [email protected] Date: Tue Mar 16 16:15:10 2010 Log: Non-ASCII sybmols made their way into JS comments
Review URL: http://codereview.chromium.org/984005 http://code.google.com/p/v8/source/detail?r=4149 Modified: /branches/bleeding_edge/src/date-delay.js ======================================= --- /branches/bleeding_edge/src/date-delay.js Mon Mar 15 10:04:07 2010 +++ /branches/bleeding_edge/src/date-delay.js Tue Mar 16 16:15:10 2010 @@ -265,7 +265,7 @@ function YearFromTime(t) { if (t !== ymd_from_time_cached_time) { - // Limits according to ECMA 262 15.9.1.1 + // Limits according to ECMA 262 15.9.1.1 if (!$isFinite(t) || t < -8640000000000000 || t > 8640000000000000) { return $NaN; } @@ -279,7 +279,7 @@ function MonthFromTime(t) { if (t !== ymd_from_time_cached_time) { - // Limits according to ECMA 262 15.9.1.1 + // Limits according to ECMA 262 15.9.1.1 if (!$isFinite(t) || t < -8640000000000000 || t > 8640000000000000) { return $NaN; } @@ -292,7 +292,7 @@ function DateFromTime(t) { if (t !== ymd_from_time_cached_time) { - // Limits according to ECMA 262 15.9.1.1 + // Limits according to ECMA 262 15.9.1.1 if (!$isFinite(t) || t < -8640000000000000 || t > 8640000000000000) { return $NaN; } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
