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

Side by Side Diff: lib/dom/frog/dom_frog.dart

Issue 10809035: Several new features and improvements for dartdoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments Created 8 years, 4 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 | « lib/dartdoc/static/styles.css ('k') | lib/html/frog/html_frog.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 #library('dom'); 1 #library('dart:dom_deprecated');
2 2
3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library. 8 // Auto-generated Dart DOM library.
9 9
10 10
11 11
(...skipping 25270 matching lines...) Expand 10 before | Expand all | Expand 10 after
25282 if (length < 0) throw new IllegalArgumentException('length'); 25282 if (length < 0) throw new IllegalArgumentException('length');
25283 if (start < 0) throw new IndexOutOfRangeException(start); 25283 if (start < 0) throw new IndexOutOfRangeException(start);
25284 int end = start + length; 25284 int end = start + length;
25285 if (end > a.length) throw new IndexOutOfRangeException(end); 25285 if (end > a.length) throw new IndexOutOfRangeException(end);
25286 for (int i = start; i < end; i++) { 25286 for (int i = start; i < end; i++) {
25287 accumulator.add(a[i]); 25287 accumulator.add(a[i]);
25288 } 25288 }
25289 return accumulator; 25289 return accumulator;
25290 } 25290 }
25291 } 25291 }
OLDNEW
« no previous file with comments | « lib/dartdoc/static/styles.css ('k') | lib/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698