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

Unified Diff: test/codegen/expect/misc.js

Issue 1173023004: fixes #217, Object members on extension types (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/misc.js
diff --git a/test/codegen/expect/misc.js b/test/codegen/expect/misc.js
index f6cca28443913084dfd73831a2ff6f93d8195ed3..d5c843fc36cb8fb157ac9fa9299fdfc78a6bcbae 100644
--- a/test/codegen/expect/misc.js
+++ b/test/codegen/expect/misc.js
@@ -21,9 +21,9 @@ dart.library('misc', null, /* Imports */[
});
let Generic = Generic$();
function main() {
- core.print(dart[dartx.toString](1));
- core.print(dart[dartx.toString](1.0));
- core.print(dart[dartx.toString](1.1));
+ core.print(dart.toString(1));
+ core.print(dart.toString(1.0));
+ core.print(dart.toString(1.1));
let x = 42;
core.print(dart.equals(x, core.Object));
core.print(dart.equals(x, Generic));
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698