| Index: test/codegen_expected/language/issue_23914_test.js
|
| diff --git a/test/codegen_expected/language/issue_23914_test.js b/test/codegen_expected/language/issue_23914_test.js
|
| index 701d382c9533f02cc7637fe6b53597c830d22b29..f4f09f56e499cf319357b1b64c801a0f2a53f34c 100644
|
| --- a/test/codegen_expected/language/issue_23914_test.js
|
| +++ b/test/codegen_expected/language/issue_23914_test.js
|
| @@ -7,12 +7,10 @@ dart_library.library('language/issue_23914_test', null, /* Imports */[
|
| const dart = dart_sdk.dart;
|
| const dartx = dart_sdk.dartx;
|
| const issue_23914_test = Object.create(null);
|
| - let LinkedListEntryOfE = () => (LinkedListEntryOfE = dart.constFn(collection.LinkedListEntry$(E)))();
|
| - let LinkedListEntryOfLinkedListEntryOfE = () => (LinkedListEntryOfLinkedListEntryOfE = dart.constFn(collection.LinkedListEntry$(LinkedListEntryOfE())))();
|
| - let LinkedListOfLinkedListEntryOfLinkedListEntryOfE = () => (LinkedListOfLinkedListEntryOfLinkedListEntryOfE = dart.constFn(collection.LinkedList$(LinkedListEntryOfLinkedListEntryOfE())))();
|
| + let LinkedListOfLinkedListEntry = () => (LinkedListOfLinkedListEntry = dart.constFn(collection.LinkedList$(collection.LinkedListEntry)))();
|
| let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
|
| issue_23914_test.main = function() {
|
| - let a = core.List.unmodifiable(new (LinkedListOfLinkedListEntryOfLinkedListEntryOfE())());
|
| + let a = core.List.unmodifiable(new (LinkedListOfLinkedListEntry())());
|
| };
|
| dart.fn(issue_23914_test.main, VoidTodynamic());
|
| // Exports:
|
|
|