Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } |
| OLD | NEW |