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

Unified Diff: lib/src/list_proxy.dart

Issue 11260039: Advance html5lib to newest breaking changes in core: getKeys -> keys, etc (Closed) Base URL: git@github.com:dart-lang/html5lib.git@master
Patch Set: Created 8 years, 2 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
« no previous file with comments | « lib/src/inputstream.dart ('k') | lib/src/tokenizer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/list_proxy.dart
diff --git a/lib/src/list_proxy.dart b/lib/src/list_proxy.dart
index 14e3cfe8d743dc27718d720c09d02c189e65b864..4fe32e34c8123c52dfca2d861f027fee3adc7042 100644
--- a/lib/src/list_proxy.dart
+++ b/lib/src/list_proxy.dart
@@ -51,7 +51,7 @@ class ListProxy<E> implements List<E> {
bool every(bool f(E element)) => _list.every(f);
bool some(bool f(E element)) => _list.some(f);
bool get isEmpty => _list.isEmpty;
- E last() => _list.last();
+ E get last => _list.last;
set length(int value) { _list.length = value; }
operator []=(int index, E value) { _list[index] = value; }
« no previous file with comments | « lib/src/inputstream.dart ('k') | lib/src/tokenizer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698