| Index: tests/language/generic_methods_test.dart
|
| diff --git a/tests/language/generic_methods_test.dart b/tests/language/generic_methods_test.dart
|
| index 3fd6d247268f3e8679158bf0961929823f715586..9151fc308cd5b16c9822dc9c32cf0a7b02be02e2 100644
|
| --- a/tests/language/generic_methods_test.dart
|
| +++ b/tests/language/generic_methods_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
|
| +/// method declarations and method invocations. Slightly adjusted version of
|
| +/// code from DEP #22.
|
| +
|
| +library generic_methods_test;
|
|
|
| -// Dart test verifying that the parser can handle type parameterization of
|
| -// method declarations and method invocations. Slightly adjusted version of
|
| -// code from DEP #22.
|
| +import "package:expect/expect.dart";
|
|
|
| class BinaryTreeNode<K extends Comparable<K>, V> {
|
| final K _key;
|
|
|