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 analysis_server.src.domain_diagnostic; | |
6 | |
7 import 'dart:async'; | 5 import 'dart:async'; |
8 import 'dart:collection'; | 6 import 'dart:collection'; |
9 import 'dart:core'; | 7 import 'dart:core'; |
10 | 8 |
11 import 'package:analysis_server/protocol/protocol.dart'; | 9 import 'package:analysis_server/protocol/protocol.dart'; |
12 import 'package:analysis_server/protocol/protocol_generated.dart'; | 10 import 'package:analysis_server/protocol/protocol_generated.dart'; |
13 import 'package:analysis_server/src/analysis_server.dart'; | 11 import 'package:analysis_server/src/analysis_server.dart'; |
14 import 'package:analysis_server/src/constants.dart'; | 12 import 'package:analysis_server/src/constants.dart'; |
15 import 'package:analyzer/src/context/cache.dart'; | 13 import 'package:analyzer/src/context/cache.dart'; |
16 import 'package:analyzer/src/context/context.dart'; | 14 import 'package:analyzer/src/context/context.dart'; |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 } else if (requestName == DIAGNOSTIC_GET_SERVER_PORT) { | 117 } else if (requestName == DIAGNOSTIC_GET_SERVER_PORT) { |
120 handleGetServerPort(request); | 118 handleGetServerPort(request); |
121 return Response.DELAYED_RESPONSE; | 119 return Response.DELAYED_RESPONSE; |
122 } | 120 } |
123 } on RequestFailure catch (exception) { | 121 } on RequestFailure catch (exception) { |
124 return exception.response; | 122 return exception.response; |
125 } | 123 } |
126 return null; | 124 return null; |
127 } | 125 } |
128 } | 126 } |
OLD | NEW |