| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 # This Makefile is used to run the analyzer on the sources of poi.dart. | 5 # This Makefile is used to run the analyzer on the sources of poi.dart. |
| 6 # Unfortunately, we have to ignore some hints either due to bugs in the | 6 # Unfortunately, we have to ignore some hints either due to bugs in the |
| 7 # analyzer, or due to patterns in dart2js (for example, unused imports of | 7 # analyzer, or due to patterns in dart2js (for example, unused imports of |
| 8 # helpers.dart). | 8 # helpers.dart). |
| 9 # | 9 # |
| 10 # The purpose of this Makefile is to be used from inside Emacs to fix any valid | 10 # The purpose of this Makefile is to be used from inside Emacs to fix any valid |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/dart2jslib
\.dart|26|8|22|' \ | 25 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/dart2jslib
\.dart|26|8|22|' \ |
| 26 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/dart_types
\.dart|17|8|22|' \ | 26 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/dart_types
\.dart|17|8|22|' \ |
| 27 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/deferred_l
oad\.dart|59|8|11|' \ | 27 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/deferred_l
oad\.dart|59|8|11|' \ |
| 28 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/elements/e
lements\.dart|28|8|25|' \ | 28 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/elements/e
lements\.dart|28|8|25|' \ |
| 29 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/elements/m
odelx\.dart|8|8|25|' \ | 29 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/elements/m
odelx\.dart|8|8|25|' \ |
| 30 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/js_emitter
/js_emitter\.dart|47|8|25|' \ | 30 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/js_emitter
/js_emitter\.dart|47|8|25|' \ |
| 31 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/library_lo
ader\.dart|25|8|22|' \ | 31 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/library_lo
ader\.dart|25|8|22|' \ |
| 32 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/patch_pars
er\.dart|120|8|22|' \ | 32 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/patch_pars
er\.dart|120|8|22|' \ |
| 33 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/resolution
/class_members\.dart|22|8|25|' \ | 33 | grep -v 'INFO|HINT|UNUSED_IMPORT|.*/compiler/implementation/resolution
/class_members\.dart|22|8|25|' \ |
| 34 | sed -e "s,$(PWD)/,," \ | 34 | sed -e "s,$(PWD)/,," \ |
| 35 » | awk -F'|' '{print $$4 ":" $$5 ":" $$6 ": [" $$3 "]" $$8 }' \ | 35 » | awk -F'|' '{print $$4 ":" $$5 ":" $$6 ":\n [" n$$3 "]" $$8 }' \ |
| OLD | NEW |