Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: pkg/docgen/test/multi_library_code/lib/dottedLibraryName.dart

Issue 1364553002: remove docgen source and targets from build (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: remove scripts Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/docgen/test/method_param_test.dart ('k') | pkg/docgen/test/multi_library_code/lib/root_lib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/test/multi_library_code/lib/dottedLibraryName.dart
diff --git a/pkg/docgen/test/multi_library_code/lib/dottedLibraryName.dart b/pkg/docgen/test/multi_library_code/lib/dottedLibraryName.dart
deleted file mode 100644
index c4357c10d69fda6b6fce1998b444884ddf0cd36a..0000000000000000000000000000000000000000
--- a/pkg/docgen/test/multi_library_code/lib/dottedLibraryName.dart
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2014, 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.
-
-library library.name.wiith.dots.init;
-
-/// This library is purely for testing purposes, to ensure
-/// that we have a library that has dots in its name and
-/// that it works properly
-///
-/// In addition, it's nice to have something which has paragraph
-/// breaks inside a triple-slash doc comment.
-///
-/// Like this.
-
-/// This is a top level field holding the number three;
-int topLevelInt = 3;
-
-/// This is a class with various ways of getting the number three.
-///
-/// It also has a comment with paragraph breaks.
-class SomeClass {
- /// This is a method that returns the number three. See
- /// [three]
- someMethod() => 3;
-
- /// This is a symbolic representation of the number three.
- int three = 3;
-}
-
-/// This is another class.
-class AnotherClass {
- /// This method returns [List<int>] containing the number
- /// three three times. Compare with [SomeClass.someMethod].
- List<int> anotherMethod() {
- return const [3, 3, 3];
- }
-}
« no previous file with comments | « pkg/docgen/test/method_param_test.dart ('k') | pkg/docgen/test/multi_library_code/lib/root_lib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698