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

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

Issue 2000663002: Handle resolvedAst for forwarding constructors and callType on unnamed mixin applications. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix test. Created 4 years, 7 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 | « pkg/compiler/lib/src/typechecker.dart ('k') | tests/compiler/dart2js/members_test.dart » ('j') | 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 library dart2js.diagnostic_reporter.helper; 5 library dart2js.diagnostic_reporter.helper;
6 6
7 import 'package:compiler/src/diagnostics/diagnostic_listener.dart'; 7 import 'package:compiler/src/diagnostics/diagnostic_listener.dart';
8 import 'package:compiler/src/diagnostics/messages.dart'; 8 import 'package:compiler/src/diagnostics/messages.dart';
9 import 'package:compiler/src/diagnostics/spannable.dart'; 9 import 'package:compiler/src/diagnostics/spannable.dart';
10 import 'package:compiler/src/diagnostics/source_span.dart'; 10 import 'package:compiler/src/diagnostics/source_span.dart';
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 @override 67 @override
68 SourceSpan spanFromSpannable(Spannable node) { 68 SourceSpan spanFromSpannable(Spannable node) {
69 return reporter.spanFromSpannable(node); 69 return reporter.spanFromSpannable(node);
70 } 70 }
71 71
72 @override 72 @override
73 withCurrentElement(Element element, f()) { 73 withCurrentElement(Element element, f()) {
74 return reporter.withCurrentElement(element, f); 74 return reporter.withCurrentElement(element, f);
75 } 75 }
76
77 @override
78 bool get hasReportedError => reporter.hasReportedError;
76 } 79 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/typechecker.dart ('k') | tests/compiler/dart2js/members_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698