Skip to content

Commit 11c5fee

Browse files
committed
Version 1.17.0-dev.6.4
Cherry-pick '88dd7c8f37c5c51591e0c629d1f9e09599f7339f' to dev
2 parents 12525ae + a5fb4fe commit 11c5fee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/compiler/lib/src/util/link_implementation.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class LinkEntry<T> extends Link<T> {
6161
Link<T> tail;
6262

6363
LinkEntry(T this.head, [Link<T> tail])
64-
: this.tail = ((tail == null) ? new Link<T>() : tail);
64+
: this.tail = ((tail == null) ? const Link() : tail);
6565

6666
Link<T> prepend(T element) {
6767
// TODO(ahe): Use new Link<T>, but this cost 8% performance on VM.

tools/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ MAJOR 1
2828
MINOR 17
2929
PATCH 0
3030
PRERELEASE 6
31-
PRERELEASE_PATCH 3
31+
PRERELEASE_PATCH 4

0 commit comments

Comments
 (0)