| Index: tests/language/generic_functions_test.dart
|
| diff --git a/tests/language/generic_functions_test.dart b/tests/language/generic_functions_test.dart
|
| index 54ab1734329fed8c530d862096e09d4a9da86fa4..814163a33f9051e4d488b7bf3c554e3a35fd83f2 100644
|
| --- a/tests/language/generic_functions_test.dart
|
| +++ b/tests/language/generic_functions_test.dart
|
| @@ -2,11 +2,13 @@
|
| // 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:expect/expect.dart";
|
| +/// Dart test verifying that the parser can handle type parameterization of
|
| +/// function declarations and function invocations. Variant of code from
|
| +/// DEP #22, adjusted to use generic top level functions.
|
| +
|
| +library generic_functions_test;
|
|
|
| -// Dart test verifying that the parser can handle type parameterization of
|
| -// function declarations and function invocations. Variant of code from
|
| -// DEP #22, adjusted to use generic top level functions.
|
| +import "package:expect/expect.dart";
|
|
|
| class BinaryTreeNode<K extends Comparable<K>, V> {
|
| final K _key;
|
|
|