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

Unified Diff: pkg/dev_compiler/test/codegen_expected/unresolved_names.js

Issue 2962263002: fix #30030, fix #27327 - fix tearoffs and various Object member bugs (Closed)
Patch Set: fix Created 3 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: pkg/dev_compiler/test/codegen_expected/unresolved_names.js
diff --git a/pkg/dev_compiler/test/codegen_expected/unresolved_names.js b/pkg/dev_compiler/test/codegen_expected/unresolved_names.js
index a1ae51506f05dd0b29153c93c1a1bde75380893b..43e049a8b376d1afe3d1eca594afe1b4031a2243 100644
--- a/pkg/dev_compiler/test/codegen_expected/unresolved_names.js
+++ b/pkg/dev_compiler/test/codegen_expected/unresolved_names.js
@@ -9,9 +9,9 @@ define(['dart_sdk'], function(dart_sdk) {
(unresolved_names.C.new = function() {
}).prototype = unresolved_names.C.prototype;
unresolved_names.main = function() {
- new (dart.throw(Error("compile error: unresolved constructor: " + "dynamic" + "." + "<unnamed>")))();
- new (dart.throw(Error("compile error: unresolved constructor: " + "C" + "." + "bar")))();
- core.print(dart.throw(Error("compile error: unresolved identifier: " + "baz")));
+ new (dart.throw(Error("compile error: unresolved constructor: dynamic.<unnamed>")))();
+ new (dart.throw(Error("compile error: unresolved constructor: C.bar")))();
+ core.print(dart.throw(Error("compile error: unresolved identifier: baz")));
core.print(dart.dload(unresolved_names.C, 'quux'));
};
dart.fn(unresolved_names.main, VoidTodynamic());
« no previous file with comments | « pkg/dev_compiler/test/browser/language_tests.js ('k') | pkg/dev_compiler/tool/input_sdk/patch/core_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698