| OLD | NEW |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 2 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 3 | 7 |
| 4 library engine.index; | 8 library engine.index; |
| 5 | 9 |
| 6 import 'dart:collection' show Queue; | 10 import 'dart:collection' show Queue; |
| 7 import 'java_core.dart'; | 11 import 'java_core.dart'; |
| 8 import 'source.dart'; | 12 import 'source.dart'; |
| 9 import 'scanner.dart' show Token; | 13 import 'scanner.dart' show Token; |
| 10 import 'ast.dart'; | 14 import 'ast.dart'; |
| (...skipping 2663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2674 * element are available. For example, if the element is a field and the relat
ionship is the | 2678 * element are available. For example, if the element is a field and the relat
ionship is the |
| 2675 * is-referenced-by relationship, then this method will be invoked with each l
ocation at which the | 2679 * is-referenced-by relationship, then this method will be invoked with each l
ocation at which the |
| 2676 * field is referenced. | 2680 * field is referenced. |
| 2677 * | 2681 * |
| 2678 * @param element the [Element] that has the relationship with the locations | 2682 * @param element the [Element] that has the relationship with the locations |
| 2679 * @param relationship the relationship between the given element and the loca
tions | 2683 * @param relationship the relationship between the given element and the loca
tions |
| 2680 * @param locations the locations that were found | 2684 * @param locations the locations that were found |
| 2681 */ | 2685 */ |
| 2682 void hasRelationships(Element element, Relationship relationship, List<Locatio
n> locations); | 2686 void hasRelationships(Element element, Relationship relationship, List<Locatio
n> locations); |
| 2683 } | 2687 } |
| OLD | NEW |