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

Side by Side Diff: test/report_test.dart

Issue 1038583004: Rationalize coercions (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rebase Created 5 years, 9 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
« no previous file with comments | « test/dart_codegen/expect/types.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 /// Tests for summary reporting. 5 /// Tests for summary reporting.
6 library dev_compiler.test.report_test; 6 library dev_compiler.test.report_test;
7 7
8 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
9 9
10 import 'package:dev_compiler/src/testing.dart'; 10 import 'package:dev_compiler/src/testing.dart';
(...skipping 10 matching lines...) Expand all
21 '/main.dart': ''' 21 '/main.dart': '''
22 import 'package:foo/bar.dart'; 22 import 'package:foo/bar.dart';
23 23
24 test1() { 24 test1() {
25 x = /*severe:StaticTypeError*/"hi"; 25 x = /*severe:StaticTypeError*/"hi";
26 } 26 }
27 ''', 27 ''',
28 'package:foo/bar.dart': ''' 28 'package:foo/bar.dart': '''
29 num x; 29 num x;
30 test2() { 30 test2() {
31 int y = /*info:DownCast*/x; 31 int y = /*info:AssignmentCast*/x;
32 } 32 }
33 ''', 33 ''',
34 }; 34 };
35 testChecker(files); 35 testChecker(files);
36 var reporter = new SummaryReporter(); 36 var reporter = new SummaryReporter();
37 testChecker(files, reporter: reporter); 37 testChecker(files, reporter: reporter);
38 38
39 var summary1 = reporter.result; 39 var summary1 = reporter.result;
40 expect(summary1.loose['file:///main.dart'].messages.length, 1); 40 expect(summary1.loose['file:///main.dart'].messages.length, 1);
41 var barUrl = 'package:foo/bar.dart'; 41 var barUrl = 'package:foo/bar.dart';
42 expect(summary1.packages['foo'].libraries[barUrl].messages.length, 1); 42 expect(summary1.packages['foo'].libraries[barUrl].messages.length, 1);
43 43
44 var summary2 = GlobalSummary.parse(summary1.toJsonMap()); 44 var summary2 = GlobalSummary.parse(summary1.toJsonMap());
45 expect(summary2.loose['file:///main.dart'].messages.length, 1); 45 expect(summary2.loose['file:///main.dart'].messages.length, 1);
46 expect(summary2.packages['foo'].libraries[barUrl].messages.length, 1); 46 expect(summary2.packages['foo'].libraries[barUrl].messages.length, 1);
47 }); 47 });
48 } 48 }
OLDNEW
« no previous file with comments | « test/dart_codegen/expect/types.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698