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

Side by Side Diff: pkg/docgen/example/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: Added copyright information., 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
« no previous file with comments | « pkg/docgen/bin/docgen.dart ('k') | pkg/docgen/lib/dart2yaml.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
1 /** 5 /**
2 * This library is used solely for testing during development and is not 6 * This library is used solely for testing during development and is not
3 * intended to be run by the testing machines. 7 * intended to be run by the testing machines.
4 */ 8 */
5 // TODO(tmandel): Remove this file once docgen is ready for more clear tests. 9 // TODO(tmandel): Remove this file once docgen is ready for more clear tests.
6 library DummyLibrary; 10 library DummyLibrary;
7 11
8 import 'dart:json'; 12 import 'dart:json';
9 import 'dart:math'; 13 import 'dart:math';
10 14
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 51 }
48 52
49 main() { 53 main() {
50 A a = new A(); 54 A a = new A();
51 print(a.someNumber); 55 print(a.someNumber);
52 } 56 }
53 57
54 A getA(int testInt, [String testString="default"]) { 58 A getA(int testInt, [String testString="default"]) {
55 return new A(); 59 return new A();
56 } 60 }
OLDNEW
« no previous file with comments | « pkg/docgen/bin/docgen.dart ('k') | pkg/docgen/lib/dart2yaml.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698