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

Unified Diff: pkg/polymer/lib/transformer.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/lib/transformer.dart
diff --git a/pkg/polymer/lib/transformer.dart b/pkg/polymer/lib/transformer.dart
index 960d9dfec448cc33c71c83089ca3dd504c5f9950..6183a74f488064567bd88bce5f0ed50cfbe2636f 100644
--- a/pkg/polymer/lib/transformer.dart
+++ b/pkg/polymer/lib/transformer.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-/** Transfomer used for pub-serve and pub-deploy. */
+/// Transfomer used for pub-serve and pub-deploy.
library polymer.transformer;
import 'package:barback/barback.dart';
@@ -16,17 +16,15 @@ import 'src/build/linter.dart';
import 'src/build/polyfill_injector.dart';
import 'src/build/script_compactor.dart';
-/**
- * The Polymer transformer, which internally runs several phases that will:
- * * Extract inlined script tags into their separate files
- * * Apply the observable transformer on every Dart script.
- * * Inline imported html files
- * * Combine scripts from multiple files into a single script tag
- * * Inject extra polyfills needed to run on all browsers.
- *
- * At the end of these phases, this tranformer produces a single entrypoint HTML
- * file with a single Dart script that can later be compiled with dart2js.
- */
+/// The Polymer transformer, which internally runs several phases that will:
+/// * Extract inlined script tags into their separate files
+/// * Apply the observable transformer on every Dart script.
+/// * Inline imported html files
+/// * Combine scripts from multiple files into a single script tag
+/// * Inject extra polyfills needed to run on all browsers.
+///
+/// At the end of these phases, this tranformer produces a single entrypoint
+/// HTML file with a single Dart script that can later be compiled with dart2js.
class PolymerTransformerGroup implements TransformerGroup {
final Iterable<Iterable> phases;

Powered by Google App Engine
This is Rietveld 408576698