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

Unified Diff: utils/tests/dartdoc/src/dummy.dart

Issue 9555013: Get dartdoc in the SDK and working correctly. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update copyright date. Created 8 years, 10 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: utils/tests/dartdoc/src/dummy.dart
diff --git a/utils/tests/dartdoc/src/dummy.dart b/utils/tests/dartdoc/src/dummy.dart
deleted file mode 100644
index cded0e15ae55e49b576aabc46bed0f9fc39b2dab..0000000000000000000000000000000000000000
--- a/utils/tests/dartdoc/src/dummy.dart
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (c) 2011, 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.
-
-// A dummy library for testing dartdoc name references.
-#library('dummy');
-
-topLevelMethod() => null;
-
-class Class {
- Class() => null;
- Class.namedConstructor() => null;
- method(param) => null;
- get getterOnly() => null;
- get getterAndSetter() => null;
- set getterAndSetter(val) => null;
- set setterOnly(val) => null;
-}

Powered by Google App Engine
This is Rietveld 408576698