be6593e5c6
Nothing in the LSP spec supports arrays as params (let alone a union of a single item or array). Since the new type is dynamic, this should be non-breaking even if LSP changes (though we'll want to put it back if we need to write a handler for something that accepts a union like this). Change-Id: Id1af1d438fede94906ae76eaa8b9a959b0b62ccf Reviewed-on: https://dart-review.googlesource.com/c/85396 Commit-Queue: Danny Tuppeny <dantup@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
20 lines
621 B
Dart
20 lines
621 B
Dart
// Copyright (c) 2018, 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 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import 'dart_test.dart' as dart_test;
|
|
import 'json_test.dart' as json_test;
|
|
import 'markdown_test.dart' as markdown_test;
|
|
import 'typescript_test.dart' as typescript_test;
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
dart_test.main();
|
|
json_test.main();
|
|
markdown_test.main();
|
|
typescript_test.main();
|
|
}, name: 'lsp-tool');
|
|
}
|