There was an error while loading. Please reload this page.
2 parents 12525ae + a5fb4fe commit 11c5feeCopy full SHA for 11c5fee
pkg/compiler/lib/src/util/link_implementation.dart
@@ -61,7 +61,7 @@ class LinkEntry<T> extends Link<T> {
61
Link<T> tail;
62
63
LinkEntry(T this.head, [Link<T> tail])
64
- : this.tail = ((tail == null) ? new Link<T>() : tail);
+ : this.tail = ((tail == null) ? const Link() : tail);
65
66
Link<T> prepend(T element) {
67
// TODO(ahe): Use new Link<T>, but this cost 8% performance on VM.
tools/VERSION
@@ -28,4 +28,4 @@ MAJOR 1
28
MINOR 17
29
PATCH 0
30
PRERELEASE 6
31
-PRERELEASE_PATCH 3
+PRERELEASE_PATCH 4
0 commit comments