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

Side by Side Diff: pkg/docgen/test/multi_library_test.dart

Issue 171683009: pkg/docgen: rebase oops (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 | « no previous file | 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 library single_library_test; 1 library single_library_test;
2 2
3 import 'dart:io'; 3 import 'dart:io';
4 4
5 import 'package:path/path.dart' as path; 5 import 'package:path/path.dart' as path;
6 import 'package:unittest/unittest.dart'; 6 import 'package:unittest/unittest.dart';
7 7
8 import '../lib/docgen.dart'; 8 import '../lib/docgen.dart';
9 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util. dart' 9 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util. dart'
10 as dart2js_util; 10 as dart2js_util;
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 expect(exportedClass.docName, 'testLib.C'); 168 expect(exportedClass.docName, 'testLib.C');
169 169
170 methodParameterDocComment = exportedClass.fixReference( 170 methodParameterDocComment = exportedClass.fixReference(
171 'B').children.first.text; 171 'B').children.first.text;
172 expect(methodParameterDocComment, 'testLib.B'); 172 expect(methodParameterDocComment, 'testLib.B');
173 173
174 methodParameterDocComment = exportedClass.fixReference( 174 methodParameterDocComment = exportedClass.fixReference(
175 'testFunc').children.first.text; 175 'testFunc').children.first.text;
176 expect(methodParameterDocComment, 'testLib.testFunc'); 176 expect(methodParameterDocComment, 'testLib.testFunc');
177 177
178 })).whenComplete(() => TEMP_DIRNAME.deleteSync(recursive: true)); 178 }).whenComplete(() => _tempDir.deleteSync(recursive: true));
179 }); 179 });
180 }); 180 });
181 } 181 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698