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

Unified Diff: test/codegen/expect/language/enum_mirror_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/enum_mirror_test.js
diff --git a/test/codegen/expect/language/enum_mirror_test.js b/test/codegen/expect/language/enum_mirror_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..d1bb8a5b192796dca3b051bd70b8c5d479d0774e
--- /dev/null
+++ b/test/codegen/expect/language/enum_mirror_test.js
@@ -0,0 +1,36 @@
+dart_library.library('language/enum_mirror_test', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__enum_mirror_test(exports, dart_sdk, expect) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const mirrors = dart_sdk.mirrors;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const expect$ = expect.expect;
+ const enum_mirror_test = Object.create(null);
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ enum_mirror_test.Foo = class Foo extends core.Object {
+ new(index) {
+ this.index = index;
+ }
+ toString() {
+ return {
+ 0: "Foo.BAR",
+ 1: "Foo.BAZ"
+ }[this.index];
+ }
+ };
+ enum_mirror_test.Foo.BAR = dart.const(new enum_mirror_test.Foo(0));
+ enum_mirror_test.Foo.BAZ = dart.const(new enum_mirror_test.Foo(1));
+ enum_mirror_test.Foo.values = dart.constList([enum_mirror_test.Foo.BAR, enum_mirror_test.Foo.BAZ], enum_mirror_test.Foo);
+ let const$;
+ enum_mirror_test.main = function() {
+ expect$.Expect.equals('Foo.BAR', enum_mirror_test.Foo.BAR.toString());
+ let name = mirrors.reflect(enum_mirror_test.Foo.BAR).invoke(const$ || (const$ = dart.const(core.Symbol.new('toString'))), []).reflectee;
+ expect$.Expect.equals('Foo.BAR', name);
+ };
+ dart.fn(enum_mirror_test.main, VoidTodynamic());
+ // Exports:
+ exports.enum_mirror_test = enum_mirror_test;
+});

Powered by Google App Engine
This is Rietveld 408576698