| Index: corelib/src/date.dart
|
| diff --git a/corelib/src/date.dart b/corelib/src/date.dart
|
| index c7b5668baaf6ece57186d95a9a5fe01576f26644..3c83935ae65ca45856c946fa47b9da6dfbf2b32b 100644
|
| --- a/corelib/src/date.dart
|
| +++ b/corelib/src/date.dart
|
| @@ -36,13 +36,15 @@ interface Date extends Comparable, Hashable default DateImplementation {
|
| * Constructs a [Date] instance based on the individual parts, in the
|
| * local time-zone.
|
| */
|
| + // TODO(floitsch): the spec allows default values in interfaces, but our
|
| + // tools don't yet. Eventually we want to have default values here.
|
| Date(int year,
|
| - int month,
|
| - int day,
|
| - int hours,
|
| - int minutes,
|
| - int seconds,
|
| - int milliseconds);
|
| + [int month,
|
| + int day,
|
| + int hours,
|
| + int minutes,
|
| + int seconds,
|
| + int milliseconds]);
|
|
|
| /**
|
| * Constructs a [Date] instance based on the individual parts.
|
|
|