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

Unified Diff: pkg/docgen/test/multi_library_code/lib/test_lib.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
Index: pkg/docgen/test/multi_library_code/lib/test_lib.dart
diff --git a/pkg/docgen/test/multi_library_code/lib/test_lib.dart b/pkg/docgen/test/multi_library_code/lib/test_lib.dart
deleted file mode 100644
index 8d766246f629ba5296e5359baac0dcd86c9536f0..0000000000000000000000000000000000000000
--- a/pkg/docgen/test/multi_library_code/lib/test_lib.dart
+++ /dev/null
@@ -1,65 +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 test_lib;
-
-import 'test_lib_foo.dart';
-import 'test_lib_bar.dart';
-export 'test_lib_foo.dart';
-export 'test_lib_bar.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();
-}
-
-int positionalDefaultValues([
- int intConst = 42,
- bool boolConst = true,
- List listConst = const [true, 42, 'Shanna', null, 3.14, const []],
- String stringConst = 'Shanna',
- Map mapConst = const {'a':1, 2: true, 'c': const [1,null,true]},
- Map emptyMap = const {},
- int referencedConst = INT_CONST,
- ConstClass constructedConstant1 = const ConstClass<int>(0, true),
- ConstClass constructedConstant2 = const ConstClass(1, false, str: "str")]) {
- throw new UnimplementedError();
-}
-
-const int INT_CONST = 42;
-
-class ConstClass<T> {
- final bool boolField;
- final int intField;
- final String stringField;
-
- const ConstClass(this.intField, this.boolField, {String str: 'default'})
- : this.stringField = str;
-}

Powered by Google App Engine
This is Rietveld 408576698