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

Side by Side Diff: tests/compiler/dart2js/container_mask_equal_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Regression test for dart2js that used to have a bogus 5 // Regression test for dart2js that used to have a bogus
6 // implementation of var.== and 6 // implementation of var.== and
7 // var.hashCode. 7 // var.hashCode.
8 8
9 import 'package:expect/expect.dart'; 9 import 'package:expect/expect.dart';
10 import "package:async_helper/async_helper.dart"; 10 import "package:async_helper/async_helper.dart";
(...skipping 26 matching lines...) Expand all
37 37
38 element = compiler.mainApp.find('b'); 38 element = compiler.mainApp.find('b');
39 var mask2 = typesInferrer.getReturnTypeOfElement(element); 39 var mask2 = typesInferrer.getReturnTypeOfElement(element);
40 40
41 element = compiler.mainApp.find('c'); 41 element = compiler.mainApp.find('c');
42 var mask3 = typesInferrer.getReturnTypeOfElement(element); 42 var mask3 = typesInferrer.getReturnTypeOfElement(element);
43 43
44 element = compiler.mainApp.find('d'); 44 element = compiler.mainApp.find('d');
45 var mask4 = typesInferrer.getReturnTypeOfElement(element); 45 var mask4 = typesInferrer.getReturnTypeOfElement(element);
46 46
47 Expect.notEquals(mask1.union(mask2, compiler.world), 47 Expect.notEquals(
48 mask3.union(mask4, compiler.world)); 48 mask1.union(mask2, compiler.world), mask3.union(mask4, compiler.world));
49 }); 49 });
50 } 50 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/constant_namer_test.dart ('k') | tests/compiler/dart2js/dart2js_batch2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698