mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
bcaa2a320c
Add fix definitions and tests for renamed class and top level constants in `dart:developer` and `dart:io`. Change-Id: I6851bd61c68fdcff461117fe8f2ab1c3890cb9df Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/214000 Auto-Submit: Nate Bosch <nbosch@google.com> Reviewed-by: Lasse R.H. Nielsen <lrn@google.com> Commit-Queue: Nate Bosch <nbosch@google.com>
12 lines
464 B
Text
12 lines
464 B
Text
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
// 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.
|
|
|
|
import 'dart:developer';
|
|
|
|
void main() {
|
|
print(ServiceExtensionResponse.invalidParams);
|
|
print(ServiceExtensionResponse.extensionError);
|
|
print(ServiceExtensionResponse.extensionErrorMax);
|
|
print(ServiceExtensionResponse.extensionErrorMin);
|
|
}
|