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

Unified Diff: test/codegen_expected/language/issue_23914_test.js

Issue 2102053003: Remove DDC custom error list now that strong mode analyzer handles it (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: another fix Created 4 years, 5 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
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 f4f09f56e499cf319357b1b64c801a0f2a53f34c..701d382c9533f02cc7637fe6b53597c830d22b29 100644
--- a/test/codegen_expected/language/issue_23914_test.js
+++ b/test/codegen_expected/language/issue_23914_test.js
@@ -7,10 +7,12 @@ 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 LinkedListOfLinkedListEntry = () => (LinkedListOfLinkedListEntry = dart.constFn(collection.LinkedList$(collection.LinkedListEntry)))();
+ 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 VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
issue_23914_test.main = function() {
- let a = core.List.unmodifiable(new (LinkedListOfLinkedListEntry())());
+ let a = core.List.unmodifiable(new (LinkedListOfLinkedListEntryOfLinkedListEntryOfE())());
};
dart.fn(issue_23914_test.main, VoidTodynamic());
// Exports:

Powered by Google App Engine
This is Rietveld 408576698