Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // TODO(gram) - when we can do package imports from within packages | |
| 6 // without Dartdoc choking, this should be moved to a separate package. | |
|
Siggi Cherem (dart-lang)
2012/10/31 20:54:02
I'm not sure I understand this TODO - we want matc
gram
2012/11/01 21:23:19
Personally it seems to me it needn't be, and could
| |
| 7 | |
| 8 library matcher; | |
|
Siggi Cherem (dart-lang)
2012/10/31 20:54:02
we should add some top-level dartdocs to this libr
gram
2012/11/01 21:23:19
Done.
| |
| 9 | |
| 10 part 'basematcher.dart'; | |
|
Siggi Cherem (dart-lang)
2012/10/31 20:54:02
I think we should create a src/ subdirectory and m
gram
2012/11/01 21:23:19
Done.
| |
| 11 part 'collection_matchers.dart'; | |
| 12 part 'core_matchers.dart'; | |
| 13 part 'description.dart'; | |
| 14 part 'expect.dart'; | |
| 15 part 'future_matchers.dart'; | |
| 16 part 'interfaces.dart'; | |
| 17 part 'map_matchers.dart'; | |
| 18 part 'numeric_matchers.dart'; | |
| 19 part 'operator_matchers.dart'; | |
| 20 part 'string_matchers.dart'; | |
| 21 | |
|
Siggi Cherem (dart-lang)
2012/10/31 20:54:02
remove empty line
gram
2012/11/01 21:23:19
Done.
| |
| OLD | NEW |