| OLD | NEW |
| 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 analyze_unused_dart2js; | 5 library analyze_unused_dart2js; |
| 6 | 6 |
| 7 import 'package:async_helper/async_helper.dart'; | 7 import 'package:async_helper/async_helper.dart'; |
| 8 | 8 |
| 9 import 'package:compiler/src/dart2jslib.dart'; | 9 import 'package:compiler/src/dart2jslib.dart'; |
| 10 import 'package:compiler/src/filenames.dart'; | 10 import 'package:compiler/src/filenames.dart'; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 // Uncalled error methods in SemanticSendVisitor and subclasses. | 27 // Uncalled error methods in SemanticSendVisitor and subclasses. |
| 28 "lib/src/resolution/semantic_visitor.dart": const [ | 28 "lib/src/resolution/semantic_visitor.dart": const [ |
| 29 "The method 'error"], | 29 "The method 'error"], |
| 30 "lib/src/resolution/semantic_visitor_mixins.dart": const [ | 30 "lib/src/resolution/semantic_visitor_mixins.dart": const [ |
| 31 "The method 'error"], | 31 "The method 'error"], |
| 32 | 32 |
| 33 // Uncalled type predicate. Keep while related predicates are used. | 33 // Uncalled type predicate. Keep while related predicates are used. |
| 34 "lib/src/ssa/nodes.dart": const [ | 34 "lib/src/ssa/nodes.dart": const [ |
| 35 "The method 'isArray' is never called"], | 35 "The method 'isArray' is never called"], |
| 36 |
| 37 // Method in abstract class. Currently only instantiated trough tests. |
| 38 "lib/src/constants/expressions.dart": const [ |
| 39 "The method 'readFromEnvironment' is never called"], |
| 36 }; | 40 }; |
| 37 | 41 |
| 38 void main() { | 42 void main() { |
| 39 var uri = currentDirectory.resolve( | 43 var uri = currentDirectory.resolve( |
| 40 'pkg/compiler/lib/src/use_unused_api.dart'); | 44 'pkg/compiler/lib/src/use_unused_api.dart'); |
| 41 asyncTest(() => analyze([uri], WHITE_LIST, | 45 asyncTest(() => analyze([uri], WHITE_LIST, |
| 42 analyzeAll: false, checkResults: checkResults)); | 46 analyzeAll: false, checkResults: checkResults)); |
| 43 } | 47 } |
| 44 | 48 |
| 45 bool checkResults(Compiler compiler, CollectingDiagnosticHandler handler) { | 49 bool checkResults(Compiler compiler, CollectingDiagnosticHandler handler) { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 61 } else if (member.isTypedef) { | 65 } else if (member.isTypedef) { |
| 62 if (member.isResolved) { | 66 if (member.isResolved) { |
| 63 compiler.reportHint(member, MessageKind.GENERIC, | 67 compiler.reportHint(member, MessageKind.GENERIC, |
| 64 {'text': "Helper typedef in production code '$member'."}); | 68 {'text': "Helper typedef in production code '$member'."}); |
| 65 } | 69 } |
| 66 } | 70 } |
| 67 } | 71 } |
| 68 compiler.libraryLoader.lookupLibrary(helperUri).forEachLocalMember(checkLive); | 72 compiler.libraryLoader.lookupLibrary(helperUri).forEachLocalMember(checkLive); |
| 69 return handler.checkResults(); | 73 return handler.checkResults(); |
| 70 } | 74 } |
| OLD | NEW |