| 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.test.src.summary.summary_common; | 5 library analyzer.test.src.summary.summary_common; |
| 6 | 6 |
| 7 import 'package:analyzer/analyzer.dart'; | 7 import 'package:analyzer/analyzer.dart'; |
| 8 import 'package:analyzer/dart/ast/ast.dart'; | 8 import 'package:analyzer/dart/ast/ast.dart'; |
| 9 import 'package:analyzer/dart/element/element.dart'; | 9 import 'package:analyzer/dart/element/element.dart'; |
| 10 import 'package:analyzer/src/generated/engine.dart'; | 10 import 'package:analyzer/src/generated/engine.dart'; |
| 11 import 'package:analyzer/src/generated/error.dart'; | 11 import 'package:analyzer/src/generated/error.dart'; |
| 12 import 'package:analyzer/src/generated/java_engine_io.dart'; | 12 import 'package:analyzer/src/generated/java_engine_io.dart'; |
| 13 import 'package:analyzer/src/generated/parser.dart'; | 13 import 'package:analyzer/src/generated/parser.dart'; |
| 14 import 'package:analyzer/src/generated/scanner.dart'; | 14 import 'package:analyzer/src/generated/scanner.dart'; |
| 15 import 'package:analyzer/src/generated/source.dart'; | 15 import 'package:analyzer/src/generated/source.dart'; |
| 16 import 'package:analyzer/src/generated/source_io.dart'; | 16 import 'package:analyzer/src/generated/source_io.dart'; |
| 17 import 'package:analyzer/src/summary/base.dart'; | 17 import 'package:analyzer/src/summary/base.dart'; |
| 18 import 'package:analyzer/src/summary/format.dart'; | 18 import 'package:analyzer/src/summary/idl.dart'; |
| 19 import 'package:analyzer/src/summary/public_namespace_computer.dart' | 19 import 'package:analyzer/src/summary/public_namespace_computer.dart' |
| 20 as public_namespace; | 20 as public_namespace; |
| 21 import 'package:analyzer/src/summary/summarize_elements.dart' | 21 import 'package:analyzer/src/summary/summarize_elements.dart' |
| 22 as summarize_elements; | 22 as summarize_elements; |
| 23 import 'package:unittest/unittest.dart'; | 23 import 'package:unittest/unittest.dart'; |
| 24 | 24 |
| 25 import '../../generated/resolver_test.dart'; | 25 import '../../generated/resolver_test.dart'; |
| 26 | 26 |
| 27 /** | 27 /** |
| 28 * The public namespaces of the sdk are computed once so that we don't bog | 28 * The public namespaces of the sdk are computed once so that we don't bog |
| (...skipping 5232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5261 final String absoluteUri; | 5261 final String absoluteUri; |
| 5262 final String relativeUri; | 5262 final String relativeUri; |
| 5263 final int numTypeParameters; | 5263 final int numTypeParameters; |
| 5264 | 5264 |
| 5265 _PrefixExpectation(this.kind, this.name, | 5265 _PrefixExpectation(this.kind, this.name, |
| 5266 {this.inLibraryDefiningUnit: false, | 5266 {this.inLibraryDefiningUnit: false, |
| 5267 this.absoluteUri, | 5267 this.absoluteUri, |
| 5268 this.relativeUri, | 5268 this.relativeUri, |
| 5269 this.numTypeParameters: 0}); | 5269 this.numTypeParameters: 0}); |
| 5270 } | 5270 } |
| OLD | NEW |