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

Unified Diff: test/codegen/expect/language/map_literal_syntax_test.js

Issue 2128353002: Check in codegen test expectations. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: 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/expect/language/map_literal_syntax_test.js
diff --git a/test/codegen/expect/language/map_literal_syntax_test.js b/test/codegen/expect/language/map_literal_syntax_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..b4143484732e706372f5563a8dc23a3a6926df9c
--- /dev/null
+++ b/test/codegen/expect/language/map_literal_syntax_test.js
@@ -0,0 +1,34 @@
+dart_library.library('language/map_literal_syntax_test', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__map_literal_syntax_test(exports, dart_sdk, expect) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const expect$ = expect.expect;
+ const map_literal_syntax_test = Object.create(null);
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ let const$;
+ let const$0;
+ map_literal_syntax_test.Foo = class Foo extends core.Object {
+ new() {
+ this.x = dart.map();
+ this.y = dart.map({}, core.String, core.int);
+ this.z = const$ || (const$ = dart.const(dart.map()));
+ this.v = const$0 || (const$0 = dart.const(dart.map({}, core.String, core.int)));
+ }
+ };
+ dart.setSignature(map_literal_syntax_test.Foo, {
+ constructors: () => ({new: dart.definiteFunctionType(map_literal_syntax_test.Foo, [])})
+ });
+ map_literal_syntax_test.main = function() {
+ expect$.Expect.equals("{}", dart.toString(new map_literal_syntax_test.Foo().x));
+ expect$.Expect.equals("{}", dart.toString(new map_literal_syntax_test.Foo().y));
+ expect$.Expect.equals("{}", dart.toString(new map_literal_syntax_test.Foo().z));
+ expect$.Expect.equals("{}", dart.toString(new map_literal_syntax_test.Foo().v));
+ };
+ dart.fn(map_literal_syntax_test.main, VoidTodynamic());
+ // Exports:
+ exports.map_literal_syntax_test = map_literal_syntax_test;
+});
« no previous file with comments | « test/codegen/expect/language/map_literal_negative_test.js ('k') | test/codegen/expect/language/map_literal_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698