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

Side by Side Diff: pkg/compiler/lib/src/common.dart

Issue 1346133002: Report hint on unmatched show and hide combinators. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove line-ending changes. Created 5 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/compiler.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) 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 library dart2js.common; 5 library dart2js.common;
6 6
7 7
8 export 'common/tasks.dart' show 8 export 'common/tasks.dart' show
9 CompilerTask; 9 CompilerTask;
10 10
(...skipping 14 matching lines...) Expand all
25 Types; 25 Types;
26 26
27 export 'diagnostics/invariant.dart' show 27 export 'diagnostics/invariant.dart' show
28 invariant; 28 invariant;
29 29
30 export 'diagnostics/spannable.dart' show 30 export 'diagnostics/spannable.dart' show
31 SpannableAssertionFailure; 31 SpannableAssertionFailure;
32 32
33 export 'elements/elements.dart' show 33 export 'elements/elements.dart' show
34 ClassElement, 34 ClassElement,
35 ClosureFieldElement,
36 CompilationUnitElement, 35 CompilationUnitElement,
37 Element, 36 Element,
38 Elements, 37 Elements,
39 FunctionElement, 38 FunctionElement,
40 FunctionSignature, 39 FunctionSignature,
41 LibraryElement, 40 LibraryElement,
42 MetadataAnnotation, 41 MetadataAnnotation,
43 MixinApplicationElement, 42 MixinApplicationElement,
44 TypedefElement, 43 TypedefElement,
45 VariableElement; 44 VariableElement;
46 45
47 export 'resolution/resolution.dart' show
48 TreeElements;
49
50 export 'tree/tree.dart' show 46 export 'tree/tree.dart' show
51 Node; 47 Node;
52 48
53 export 'types/types.dart' show 49 export 'types/types.dart' show
54 TypeMask; 50 TypeMask;
55 51
56 export 'universe/universe.dart' show 52 export 'universe/universe.dart' show
57 CallStructure, 53 CallStructure,
58 Selector, 54 Selector,
59 SelectorKind; 55 SelectorKind;
60 56
61 export 'util/util.dart' show 57 export 'util/util.dart' show
62 Link; 58 Link;
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698