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

Side by Side Diff: pkg/analyzer/lib/src/generated/incremental_resolver.dart

Issue 834323006: Revert "Lint contribution refactoring.", r42967 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 | Annotate | Revision Log
OLDNEW
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
12 import 'ast.dart'; 10 import 'ast.dart';
13 import 'element.dart'; 11 import 'element.dart';
14 import 'engine.dart'; 12 import 'engine.dart';
15 import 'error.dart'; 13 import 'error.dart';
16 import 'error_verifier.dart'; 14 import 'error_verifier.dart';
17 import 'incremental_logger.dart' show logger, LoggingTimer; 15 import 'incremental_logger.dart' show logger, LoggingTimer;
18 import 'java_engine.dart'; 16 import 'java_engine.dart';
19 import 'parser.dart'; 17 import 'parser.dart';
20 import 'resolver.dart'; 18 import 'resolver.dart';
21 import 'scanner.dart'; 19 import 'scanner.dart';
(...skipping 1861 matching lines...) Expand 10 before | Expand all | Expand 10 after
1883 String toString() => name; 1881 String toString() => name;
1884 } 1882 }
1885 1883
1886 1884
1887 class _TokenPair { 1885 class _TokenPair {
1888 final _TokenDifferenceKind kind; 1886 final _TokenDifferenceKind kind;
1889 final Token oldToken; 1887 final Token oldToken;
1890 final Token newToken; 1888 final Token newToken;
1891 _TokenPair(this.kind, this.oldToken, this.newToken); 1889 _TokenPair(this.kind, this.oldToken, this.newToken);
1892 } 1890 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/engine.dart ('k') | pkg/analyzer/lib/src/generated/resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698