Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(430)

Side by Side Diff: pkg/unittest/lib/matcher.dart

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698