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

Side by Side Diff: tests/html/utils.dart

Issue 14426006: Rename dart:typeddata to dart:typed_data. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « tests/html/url_test.dart ('k') | tests/html/xhr_test.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 TestUtils; 1 library TestUtils;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:html'; 4 import 'dart:html';
5 import 'dart:typeddata'; 5 import 'dart:typed_data';
6 import '../../pkg/unittest/lib/unittest.dart'; 6 import '../../pkg/unittest/lib/unittest.dart';
7 7
8 /** 8 /**
9 * Verifies that [actual] has the same graph structure as [expected]. 9 * Verifies that [actual] has the same graph structure as [expected].
10 * Detects cycles and DAG structure in Maps and Lists. 10 * Detects cycles and DAG structure in Maps and Lists.
11 */ 11 */
12 verifyGraph(expected, actual) { 12 verifyGraph(expected, actual) {
13 var eItems = []; 13 var eItems = [];
14 var aItems = []; 14 var aItems = [];
15 15
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 } 86 }
87 } 87 }
88 return; 88 return;
89 } 89 }
90 90
91 expect(false, isTrue, reason: 'Unhandled type: $expected'); 91 expect(false, isTrue, reason: 'Unhandled type: $expected');
92 } 92 }
93 93
94 walk('', expected, actual); 94 walk('', expected, actual);
95 } 95 }
OLDNEW
« no previous file with comments | « tests/html/url_test.dart ('k') | tests/html/xhr_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698