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

Unified Diff: pkg/third_party/html5lib/lib/src/list_proxy.dart

Issue 178843003: [html5lib] triple slash comment style (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: remove extra check 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/third_party/html5lib/lib/src/list_proxy.dart
diff --git a/pkg/third_party/html5lib/lib/src/list_proxy.dart b/pkg/third_party/html5lib/lib/src/list_proxy.dart
index d779043cdf6b9786773117ac50f9814916ded4ba..0ba70733b4474e603b237cd63d75e996b7c10481 100644
--- a/pkg/third_party/html5lib/lib/src/list_proxy.dart
+++ b/pkg/third_party/html5lib/lib/src/list_proxy.dart
@@ -1,7 +1,7 @@
// TODO(jmesserly): remove this once we have a subclassable growable list
// in our libraries.
-/** A [List] proxy that you can subclass. */
+/// A [List] proxy that you can subclass.
library list_proxy;
import 'dart:collection';
@@ -10,14 +10,12 @@ import 'dart:math' show Random;
// TOOD(jmesserly): this needs to be removed, but fixing NodeList is tricky.
class ListProxy<E> extends IterableBase<E> implements List<E> {
- /** The inner [List<T>] with the actual storage. */
+ /// The inner [List<T>] with the actual storage.
final List<E> _list;
- /**
- * Creates a list proxy.
- * You can optionally specify the list to use for [storage] of the items,
- * otherwise this will create a [List<E>].
- */
+ /// Creates a list proxy.
+ /// You can optionally specify the list to use for [storage] of the items,
+ /// otherwise this will create a [List<E>].
ListProxy([List<E> storage])
: _list = storage != null ? storage : <E>[];

Powered by Google App Engine
This is Rietveld 408576698