| 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 library engine.incremental_resolver; | 5 library engine.incremental_resolver; |
| 6 | 6 |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 import 'dart:math' as math; | 8 import 'dart:math' as math; |
| 9 | 9 |
| 10 import 'package:analyzer/src/services/lint.dart'; |
| 11 |
| 10 import 'ast.dart'; | 12 import 'ast.dart'; |
| 11 import 'element.dart'; | 13 import 'element.dart'; |
| 12 import 'engine.dart'; | 14 import 'engine.dart'; |
| 13 import 'error.dart'; | 15 import 'error.dart'; |
| 14 import 'error_verifier.dart'; | 16 import 'error_verifier.dart'; |
| 15 import 'incremental_logger.dart' show logger, LoggingTimer; | 17 import 'incremental_logger.dart' show logger, LoggingTimer; |
| 16 import 'java_engine.dart'; | 18 import 'java_engine.dart'; |
| 17 import 'parser.dart'; | 19 import 'parser.dart'; |
| 18 import 'resolver.dart'; | 20 import 'resolver.dart'; |
| 19 import 'scanner.dart'; | 21 import 'scanner.dart'; |
| (...skipping 1861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1881 String toString() => name; | 1883 String toString() => name; |
| 1882 } | 1884 } |
| 1883 | 1885 |
| 1884 | 1886 |
| 1885 class _TokenPair { | 1887 class _TokenPair { |
| 1886 final _TokenDifferenceKind kind; | 1888 final _TokenDifferenceKind kind; |
| 1887 final Token oldToken; | 1889 final Token oldToken; |
| 1888 final Token newToken; | 1890 final Token newToken; |
| 1889 _TokenPair(this.kind, this.oldToken, this.newToken); | 1891 _TokenPair(this.kind, this.oldToken, this.newToken); |
| 1890 } | 1892 } |
| OLD | NEW |