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

Side by Side Diff: utils/apidoc/html_diff.dart

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. Created 8 years, 1 month 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
« runtime/vm/snapshot_test.cc ('K') | « tools/testing/legpad/legpad.py ('k') | no next file » | 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * A script to assist in documenting the difference between the dart:html API 6 * A script to assist in documenting the difference between the dart:html API
7 * and the old DOM API. 7 * and the old DOM API.
8 */ 8 */
9 library html_diff; 9 library html_diff;
10 10
11 import 'dart:coreimpl';
12 import 'dart:io'; 11 import 'dart:io';
13 12
14 // TODO(rnystrom): Use "package:" URL (#4968). 13 // TODO(rnystrom): Use "package:" URL (#4968).
15 import '../../sdk/lib/_internal/dartdoc/lib/dartdoc.dart'; 14 import '../../sdk/lib/_internal/dartdoc/lib/dartdoc.dart';
16 import '../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart'; 15 import '../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart';
17 import '../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.dar t'; 16 import '../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.dar t';
18 17
19 // TODO(amouravski): There is currently magic that looks at dart:* libraries 18 // TODO(amouravski): There is currently magic that looks at dart:* libraries
20 // rather than the declared library names. This changed due to recent syntax 19 // rather than the declared library names. This changed due to recent syntax
21 // changes. We should only need to look at the library 'html'. 20 // changes. We should only need to look at the library 'html'.
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 Map<String, String> _getTags(String comment) { 234 Map<String, String> _getTags(String comment) {
236 if (comment == null) return const <String, String>{}; 235 if (comment == null) return const <String, String>{};
237 final re = new RegExp("@([a-zA-Z]+) ([^;]+)(?:;|\$)"); 236 final re = new RegExp("@([a-zA-Z]+) ([^;]+)(?:;|\$)");
238 final tags = <String, String>{}; 237 final tags = <String, String>{};
239 for (var m in re.allMatches(comment.trim())) { 238 for (var m in re.allMatches(comment.trim())) {
240 tags[m[1]] = m[2]; 239 tags[m[1]] = m[2];
241 } 240 }
242 return tags; 241 return tags;
243 } 242 }
244 } 243 }
OLDNEW
« runtime/vm/snapshot_test.cc ('K') | « tools/testing/legpad/legpad.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698