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

Side by Side Diff: pkg/docgen/examples/test.dart

Issue 16839004: Moved docgen out of the sdk into pkg/ (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /** 1 /**
Bob Nystrom 2013/06/12 21:10:52 Name the folder "example" instead of "examples".
Emily Fortuna 2013/06/12 21:10:56 can you add the copyright notice at the top of thi
Tate Mandel 2013/06/12 21:18:41 Done.
Tate Mandel 2013/06/12 21:18:41 Done.
2 * This library is used solely for testing during development and is not 2 * This library is used solely for testing during development and is not
3 * intended to be run by the testing machines. 3 * intended to be run by the testing machines.
4 */ 4 */
5 // TODO(tmandel): Remove this file once docgen is ready for more clear tests. 5 // TODO(tmandel): Remove this file once docgen is ready for more clear tests.
6 library DummyLibrary; 6 library DummyLibrary;
7 7
8 import 'dart:json'; 8 import 'dart:json';
9 import 'dart:math'; 9 import 'dart:math';
10 10
11 /// Doc comment for top-level variable. 11 /// Doc comment for top-level variable.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 48
49 main() { 49 main() {
50 A a = new A(); 50 A a = new A();
51 print(a.someNumber); 51 print(a.someNumber);
52 } 52 }
53 53
54 A getA(int testInt, [String testString="default"]) { 54 A getA(int testInt, [String testString="default"]) {
55 return new A(); 55 return new A();
56 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698