| Index: lib/compiler/implementation/lib/coreimpl_patch.dart
|
| diff --git a/lib/compiler/implementation/lib/coreimpl_patch.dart b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| index b274c6ed4235e79301f2c95424764beb465d3df0..0bddf6b5990f97e29cc6e7dfa9937ccaf830d794 100644
|
| --- a/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| +++ b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| @@ -85,7 +85,7 @@ patch class ListImplementation<E> {
|
| // TODO(ager): Split out into date_patch.dart and allow #source
|
| // in patch files?
|
| patch class DateImplementation {
|
| - patch DateImplementation(int years,
|
| + patch DateImplementation(int year,
|
| [int month = 1,
|
| int day = 1,
|
| int hour = 0,
|
| @@ -95,7 +95,7 @@ patch class DateImplementation {
|
| bool isUtc = false])
|
| : this.isUtc = checkNull(isUtc),
|
| millisecondsSinceEpoch = Primitives.valueFromDecomposedDate(
|
| - years, month, day, hour, minute, second, millisecond, isUtc) {
|
| + year, month, day, hour, minute, second, millisecond, isUtc) {
|
| Primitives.lazyAsJsDate(this);
|
| }
|
|
|
| @@ -106,10 +106,10 @@ patch class DateImplementation {
|
| }
|
|
|
| patch static int _brokenDownDateToMillisecondsSinceEpoch(
|
| - int years, int month, int day, int hour, int minute, int second,
|
| + int year, int month, int day, int hour, int minute, int second,
|
| int millisecond, bool isUtc) {
|
| return Primitives.valueFromDecomposedDate(
|
| - years, month, day, hour, minute, second, millisecond, isUtc);
|
| + year, month, day, hour, minute, second, millisecond, isUtc);
|
| }
|
|
|
| patch String get timeZoneName {
|
|
|