Chromium Code Reviews| Index: pkg/docgen/example/test.dart |
| diff --git a/pkg/docgen/example/test.dart b/pkg/docgen/example/test.dart |
| deleted file mode 100755 |
| index d93b63ff75ba99495ee83e4801ae63f174032dd8..0000000000000000000000000000000000000000 |
| --- a/pkg/docgen/example/test.dart |
| +++ /dev/null |
| @@ -1,60 +0,0 @@ |
| -// Copyright (c) 2013, 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. |
| - |
| -/** |
| - * This library is used solely for testing during development and is not |
| - * intended to be run by the testing machines. |
| - */ |
|
janicejl
2013/07/29 17:22:58
This file was deleted very early on (7-8 weeks ago
|
| -// TODO(tmandel): Remove this file once docgen is ready for more clear tests. |
| -library DummyLibrary; |
| - |
| -import 'dart:json'; |
| -import 'dart:math'; |
| - |
| -/// Doc comment for top-level variable. |
| -int _variable1 = 0; |
| - |
| -void set variable1(int abc) => _variable1 = abc; |
| - |
| -abstract class B { |
| - |
| -} |
| - |
| -/** |
| - * Doc comment for class A. |
| - */ |
| -/* |
| - * Normal comment for class A. |
| - */ |
| -class A implements B { |
| - |
| - /** |
| - * Markdown _test_ for **class** [A] |
| - */ |
| - int _someNumber; |
| - |
| - A() { |
| - _someNumber = 12; |
| - } |
| - |
| - int get someNumber => _someNumber; |
| - |
| - void doThis(int a) { |
| - print(a); |
| - } |
| - |
| - int multi(int a) { |
| - return a * _someNumber; |
| - } |
| - |
| -} |
| - |
| -main() { |
| - A a = new A(); |
| - print(a.someNumber); |
| -} |
| - |
| -A getA(int testInt, [String testString="default"]) { |
| - return new A(); |
| -} |