mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
Switch analysis_server_client to language 2.12, so null safety, but opt-out files.
Protocol files are generated, so should be updated together with analysis_server protocol files. Change-Id: I8c3c7a5aecd2f7ff70c531bb794df3aed21888b0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/193620 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
This commit is contained in:
parent
1ba371139e
commit
66598d3e82
16 changed files with 34 additions and 5 deletions
|
@ -76,7 +76,7 @@
|
|||
"name": "analysis_server_client",
|
||||
"rootUri": "../pkg/analysis_server_client",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.8"
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "analyzer",
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# 2.0.0-dev
|
||||
* Stable null safety release.
|
||||
|
||||
# 1.1.3
|
||||
* Supports changes made to the Analysis Server protocol through Dart 2.8.0
|
||||
* Updates to use pedantic 1.9.0 and some internal refactoring.
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'dart:async';
|
||||
import 'dart:io' show Directory, Platform, ProcessSignal, exit;
|
||||
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
// To regenerate the file, use the script
|
||||
// "pkg/analysis_server/tool/spec/generate_files".
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:analysis_server_client/handler/notification_handler.dart';
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
export 'package:analysis_server_client/src/protocol/protocol_base.dart';
|
||||
export 'package:analysis_server_client/src/protocol/protocol_common.dart';
|
||||
export 'package:analysis_server_client/src/protocol/protocol_constants.dart';
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'dart:async';
|
||||
import 'dart:convert';
|
||||
import 'dart:io';
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
/// Support for client code that needs to interact with the requests, responses
|
||||
/// and notifications that are part of the analysis server's wire protocol.
|
||||
import 'dart:convert' hide JsonDecoder;
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
// To regenerate the file, use the script
|
||||
// "pkg/analysis_server/tool/spec/generate_files".
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'dart:convert' hide JsonDecoder;
|
||||
|
||||
import 'package:analysis_server_client/src/protocol/protocol_util.dart';
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'dart:collection';
|
||||
import 'dart:convert' hide JsonDecoder;
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
/// Jenkins hash function, optimized for small integers.
|
||||
///
|
||||
/// Static methods borrowed from sdk/lib/math/jenkins_smi_hash.dart. Non-static
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'dart:async';
|
||||
import 'dart:convert';
|
||||
import 'dart:io';
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
name: analysis_server_client
|
||||
version: 1.1.3
|
||||
version: 2.0.0-dev
|
||||
description:
|
||||
A client wrapper over analysis_server.
|
||||
Instances of the class [Server] manage a connection to a server process,
|
||||
and facilitate communication to and from the server.
|
||||
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analysis_server_client
|
||||
environment:
|
||||
sdk: '>=2.8.0 <3.0.0'
|
||||
sdk: '>=2.12.0 <3.0.0'
|
||||
dependencies:
|
||||
path: ^1.7.0
|
||||
pub_semver: ^1.4.4
|
||||
path: ^1.8.0
|
||||
pub_semver: ^2.0.0
|
||||
dev_dependencies:
|
||||
analyzer:
|
||||
path: ../analyzer
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'live_test.dart' as live;
|
||||
import 'server_test.dart' as server;
|
||||
import 'verify_sorted_test.dart' as verify_sorted;
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'package:analysis_server_client/handler/connection_handler.dart';
|
||||
import 'package:analysis_server_client/handler/notification_handler.dart';
|
||||
import 'package:analysis_server_client/listener/server_listener.dart';
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'dart:async';
|
||||
import 'dart:convert';
|
||||
import 'dart:io';
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
// for details. All rights reserved. Use of this source code is governed by a
|
||||
// BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
// @dart = 2.9
|
||||
|
||||
import 'package:analysis_server/src/services/correction/sort_members.dart';
|
||||
import 'package:analyzer/dart/analysis/analysis_context_collection.dart';
|
||||
import 'package:analyzer/dart/analysis/results.dart';
|
||||
|
|
Loading…
Reference in a new issue