| Index: pkg/docgen/test/multi_library_code/lib/temp.dart
|
| diff --git a/pkg/docgen/test/multi_library_code/lib/temp.dart b/pkg/docgen/test/multi_library_code/lib/temp.dart
|
| deleted file mode 100644
|
| index 694a8a75f93fea251ab65af7537b4509b0d9d0ef..0000000000000000000000000000000000000000
|
| --- a/pkg/docgen/test/multi_library_code/lib/temp.dart
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -library testLib;
|
| -import 'temp2.dart';
|
| -import 'temp3.dart';
|
| -export 'temp2.dart';
|
| -export 'temp3.dart';
|
| -
|
| -/**
|
| - * Doc comment for class [A].
|
| - *
|
| - * Multiline Test
|
| - */
|
| -/*
|
| - * Normal comment for class A.
|
| - */
|
| -class A {
|
| -
|
| - int _someNumber;
|
| -
|
| - A() {
|
| - _someNumber = 12;
|
| - }
|
| -
|
| - A.customConstructor();
|
| -
|
| - /**
|
| - * Test for linking to parameter [A]
|
| - */
|
| - void doThis(int A) {
|
| - print(A);
|
| - }
|
| -}
|
| -
|
| -// A trivial use of `B` and `C` to eliminate import warnings
|
| -B sampleMethod(C cInstance) {
|
| - throw new UnimplementedError();
|
| -}
|
|
|