-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[VM runtime] Fix type canonicalization (fixes #32425).
A reused type argument vector that is longer than necessary needs to be shortened to the correct length upon type canonicalization. The runtime call comparing two instance runtime types also needs to consider reused vectors. Add regression test. Change-Id: Ib3b9620409b9cff313f270c4f3fb7051fecbb604 Reviewed-on: https://dart-review.googlesource.com/45340 Commit-Queue: Régis Crelier <regis@google.com> Reviewed-by: Siva Annamalai <asiva@google.com>
- Loading branch information
Showing
3 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file | ||
// 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. | ||
|
||
import 'package:expect/expect.dart'; | ||
|
||
class A<T> {} | ||
|
||
final map = {}; | ||
|
||
class B<T> { | ||
void foo() { | ||
Expect.equals(map[new A<T>().runtimeType], 42); | ||
} | ||
} | ||
|
||
class C<T, U> { | ||
void build() { | ||
new B<T>().foo(); | ||
new B<U>().foo(); | ||
Expect.equals(new B<T>().runtimeType, new B<U>().runtimeType); | ||
} | ||
} | ||
|
||
void main() { | ||
map[new A<String>().runtimeType] = 42; | ||
new C<String, String>().build(); | ||
} |