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

Unified Diff: pkg/polymer/test/build/common.dart

Issue 180373003: [polymer] switch comment style (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months 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 side-by-side diff with in-line comments
Download patch
Index: pkg/polymer/test/build/common.dart
diff --git a/pkg/polymer/test/build/common.dart b/pkg/polymer/test/build/common.dart
index d7ca4151c727ce97e63c681a3711031e580d90b5..be187ca393c39e34f43767dd4cdb08eac15e3ceb 100644
--- a/pkg/polymer/test/build/common.dart
+++ b/pkg/polymer/test/build/common.dart
@@ -20,15 +20,11 @@ String _removeTrailingWhitespace(String str) =>
str.splitMapJoin('\n',
onNonMatch: (s) => s.replaceAll(new RegExp(r'\s+$'), ''));
-/**
- * A helper package provider that has files stored in memory, also wraps
- * [Barback] to simply our tests.
- */
+/// A helper package provider that has files stored in memory, also wraps
+/// [Barback] to simply our tests.
class TestHelper implements PackageProvider {
- /**
- * Maps from an asset string identifier of the form 'package|path' to the
- * file contents.
- */
+ /// Maps from an asset string identifier of the form 'package|path' to the
+ /// file contents.
final Map<String, String> files;
final Iterable<String> packages;
final List<String> messages;
@@ -88,10 +84,8 @@ class TestHelper implements PackageProvider {
logSubscription.cancel();
}
- /**
- * Tells barback which files have changed, and thus anything that depends on
- * it on should be computed. By default mark all the input files.
- */
+ /// Tells barback which files have changed, and thus anything that depends on
+ /// it on should be computed. By default mark all the input files.
void run([Iterable<String> paths]) {
if (paths == null) paths = files.keys;
barback.updateSources(paths.map(idFromString));

Powered by Google App Engine
This is Rietveld 408576698