OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 analyzer.src.task.incremental_element_builder; | 5 library analyzer.src.task.incremental_element_builder; |
6 | 6 |
7 import 'dart:collection'; | 7 import 'dart:collection'; |
8 | 8 |
9 import 'package:analyzer/dart/element/element.dart'; | 9 import 'package:analyzer/dart/element/element.dart'; |
10 import 'package:analyzer/dart/element/type.dart'; | |
11 import 'package:analyzer/dart/element/visitor.dart'; | 10 import 'package:analyzer/dart/element/visitor.dart'; |
12 import 'package:analyzer/src/dart/element/element.dart'; | 11 import 'package:analyzer/src/dart/element/element.dart'; |
13 import 'package:analyzer/src/dart/element/member.dart'; | |
14 import 'package:analyzer/src/dart/element/type.dart'; | |
15 import 'package:analyzer/src/generated/ast.dart'; | 12 import 'package:analyzer/src/generated/ast.dart'; |
16 import 'package:analyzer/src/generated/resolver.dart'; | 13 import 'package:analyzer/src/generated/resolver.dart'; |
17 import 'package:analyzer/src/generated/scanner.dart'; | 14 import 'package:analyzer/src/generated/scanner.dart'; |
18 import 'package:analyzer/src/generated/source.dart'; | 15 import 'package:analyzer/src/generated/source.dart'; |
19 | 16 |
20 /** | 17 /** |
21 * The change of a single [CompilationUnitElement]. | 18 * The change of a single [CompilationUnitElement]. |
22 */ | 19 */ |
23 class CompilationUnitElementDelta { | 20 class CompilationUnitElementDelta { |
24 /** | 21 /** |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 } | 360 } |
364 int oldOffset = element.nameOffset; | 361 int oldOffset = element.nameOffset; |
365 int newOffset = map[oldOffset]; | 362 int newOffset = map[oldOffset]; |
366 assert(newOffset != null); | 363 assert(newOffset != null); |
367 (element as ElementImpl).nameOffset = newOffset; | 364 (element as ElementImpl).nameOffset = newOffset; |
368 if (element is! LibraryElement) { | 365 if (element is! LibraryElement) { |
369 super.visitElement(element); | 366 super.visitElement(element); |
370 } | 367 } |
371 } | 368 } |
372 } | 369 } |
OLD | NEW |