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

Unified Diff: test/codegen/expect/language/operator2_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/operator2_test.js
diff --git a/test/codegen/expect/language/operator2_test.js b/test/codegen/expect/language/operator2_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..b5e25bcc4a4b23e7c31f309e049e10092edaf8ca
--- /dev/null
+++ b/test/codegen/expect/language/operator2_test.js
@@ -0,0 +1,49 @@
+dart_library.library('language/operator2_test', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__operator2_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 operator2_test = Object.create(null);
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ operator2_test.Helper = class Helper extends core.Object {
+ new(val) {
+ this.i = val;
+ }
+ get(index) {
+ return dart.notNull(this.i) + dart.notNull(index);
+ }
+ set(index, val) {
+ this.i = val;
+ return val;
+ }
+ };
+ dart.setSignature(operator2_test.Helper, {
+ constructors: () => ({new: dart.definiteFunctionType(operator2_test.Helper, [core.int])}),
+ methods: () => ({
+ get: dart.definiteFunctionType(dart.dynamic, [core.int]),
+ set: dart.definiteFunctionType(dart.void, [core.int, core.int])
+ })
+ });
+ operator2_test.OperatorTest = class OperatorTest extends core.Object {
+ static testMain() {
+ let obj = new operator2_test.Helper(10);
+ expect$.Expect.equals(10, obj.i);
+ obj.set(10, 20);
+ expect$.Expect.equals(30, obj.get(10));
+ }
+ };
+ dart.setSignature(operator2_test.OperatorTest, {
+ statics: () => ({testMain: dart.definiteFunctionType(dart.dynamic, [])}),
+ names: ['testMain']
+ });
+ operator2_test.main = function() {
+ operator2_test.OperatorTest.testMain();
+ };
+ dart.fn(operator2_test.main, VoidTodynamic());
+ // Exports:
+ exports.operator2_test = operator2_test;
+});
« no previous file with comments | « test/codegen/expect/language/operator2_negative_test.js ('k') | test/codegen/expect/language/operator3_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698