OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 import 'dart:async'; | 5 import 'dart:async'; |
6 import 'dart:collection'; | 6 import 'dart:collection'; |
7 import 'dart:typed_data'; | 7 import 'dart:typed_data'; |
8 | 8 |
9 import 'package:analyzer/context/context_root.dart'; | 9 import 'package:analyzer/context/context_root.dart'; |
10 import 'package:analyzer/context/declared_variables.dart'; | 10 import 'package:analyzer/context/declared_variables.dart'; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 * results are "eventually consistent" with the file system by simply calling | 66 * results are "eventually consistent" with the file system by simply calling |
67 * [changeFile] any time the contents of a file on the file system have changed. | 67 * [changeFile] any time the contents of a file on the file system have changed. |
68 * | 68 * |
69 * | 69 * |
70 * TODO(scheglov) Clean up the list of implicitly analyzed files. | 70 * TODO(scheglov) Clean up the list of implicitly analyzed files. |
71 */ | 71 */ |
72 class AnalysisDriver implements AnalysisDriverGeneric { | 72 class AnalysisDriver implements AnalysisDriverGeneric { |
73 /** | 73 /** |
74 * The version of data format, should be incremented on every format change. | 74 * The version of data format, should be incremented on every format change. |
75 */ | 75 */ |
76 static const int DATA_VERSION = 29; | 76 static const int DATA_VERSION = 30; |
77 | 77 |
78 /** | 78 /** |
79 * The number of exception contexts allowed to write. Once this field is | 79 * The number of exception contexts allowed to write. Once this field is |
80 * zero, we stop writing any new exception contexts in this process. | 80 * zero, we stop writing any new exception contexts in this process. |
81 */ | 81 */ |
82 static int allowedNumberOfContextsToWrite = 10; | 82 static int allowedNumberOfContextsToWrite = 10; |
83 | 83 |
84 /** | 84 /** |
85 * The scheduler that schedules analysis work in this, and possibly other | 85 * The scheduler that schedules analysis work in this, and possibly other |
86 * analysis drivers. | 86 * analysis drivers. |
(...skipping 1969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2056 libraryDeclarations.add(new TopLevelDeclarationInSource( | 2056 libraryDeclarations.add(new TopLevelDeclarationInSource( |
2057 file.source, declaration, isExported)); | 2057 file.source, declaration, isExported)); |
2058 } | 2058 } |
2059 } | 2059 } |
2060 } | 2060 } |
2061 | 2061 |
2062 // We're not done yet. | 2062 // We're not done yet. |
2063 return false; | 2063 return false; |
2064 } | 2064 } |
2065 } | 2065 } |
OLD | NEW |