| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 part of dart2js; | 5 part of dart2js; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * If true, print a warning for each method that was resolved, but not | 8 * If true, print a warning for each method that was resolved, but not |
| 9 * compiled. | 9 * compiled. |
| 10 */ | 10 */ |
| (...skipping 2152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2163 int warnings = 0; | 2163 int warnings = 0; |
| 2164 int hints = 0; | 2164 int hints = 0; |
| 2165 } | 2165 } |
| 2166 | 2166 |
| 2167 class GenericTask extends CompilerTask { | 2167 class GenericTask extends CompilerTask { |
| 2168 final String name; | 2168 final String name; |
| 2169 | 2169 |
| 2170 GenericTask(this.name, Compiler compiler) | 2170 GenericTask(this.name, Compiler compiler) |
| 2171 : super(compiler); | 2171 : super(compiler); |
| 2172 } | 2172 } |
| OLD | NEW |