| OLD | NEW |
| 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 test.services.completion.contributor.dart.optype; | 5 library test.services.completion.contributor.dart.optype; |
| 6 | 6 |
| 7 import 'package:analysis_server/src/protocol_server.dart'; | 7 import 'package:analysis_server/src/protocol_server.dart'; |
| 8 import 'package:analysis_server/src/provisional/completion/dart/completion_targe
t.dart'; | 8 import 'package:analysis_server/src/provisional/completion/dart/completion_targe
t.dart'; |
| 9 import 'package:analysis_server/src/services/completion/dart/optype.dart'; | 9 import 'package:analysis_server/src/services/completion/dart/optype.dart'; |
| 10 import 'package:analyzer/dart/ast/ast.dart'; | 10 import 'package:analyzer/dart/ast/ast.dart'; |
| (...skipping 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1565 | 1565 |
| 1566 @override | 1566 @override |
| 1567 bool get isInSystemLibrary => false; | 1567 bool get isInSystemLibrary => false; |
| 1568 | 1568 |
| 1569 @override | 1569 @override |
| 1570 String get shortName => fullName; | 1570 String get shortName => fullName; |
| 1571 | 1571 |
| 1572 @override | 1572 @override |
| 1573 Source get source => this; | 1573 Source get source => this; |
| 1574 | 1574 |
| 1575 @override |
| 1576 Uri get uri => new Uri.file(fullName); |
| 1577 |
| 1575 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); | 1578 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); |
| 1576 } | 1579 } |
| OLD | NEW |