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

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

Issue 850343006: Linter API updates. (Closed) Base URL: http://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
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 1897 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 String toString() => name; 1919 String toString() => name;
1918 } 1920 }
1919 1921
1920 1922
1921 class _TokenPair { 1923 class _TokenPair {
1922 final _TokenDifferenceKind kind; 1924 final _TokenDifferenceKind kind;
1923 final Token oldToken; 1925 final Token oldToken;
1924 final Token newToken; 1926 final Token newToken;
1925 _TokenPair(this.kind, this.oldToken, this.newToken); 1927 _TokenPair(this.kind, this.oldToken, this.newToken);
1926 } 1928 }
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