| Index: tests/compiler/dart2js/mirrors_test.dart
|
| diff --git a/tests/compiler/dart2js/mirrors_test.dart b/tests/compiler/dart2js/mirrors_test.dart
|
| index cec75b4e1e69d717dd6dff41d261f7e0cf76274d..758566b1b9b0e81f4f50945c0d390034a7467528 100644
|
| --- a/tests/compiler/dart2js/mirrors_test.dart
|
| +++ b/tests/compiler/dart2js/mirrors_test.dart
|
| @@ -55,6 +55,14 @@ main() {
|
| Expect.stringEquals("mirrors_helper", helperLibrary.qualifiedName,
|
| "Unexpected library qualified name");
|
|
|
| + var helperLibraryLocation = helperLibrary.location;
|
| + Expect.isNotNull(helperLibraryLocation);
|
| + Expect.equals(271, helperLibraryLocation.offset, "Unexpected offset");
|
| + Expect.equals(23, helperLibraryLocation.length, "Unexpected length");
|
| + Expect.equals(9, helperLibraryLocation.line, "Unexpected line");
|
| + Expect.equals(1, helperLibraryLocation.column, "Unexpected column");
|
| +
|
| +
|
| var classes = helperLibrary.classes;
|
| Expect.isNotNull(classes, "No classes map returned");
|
| Expect.isFalse(classes.isEmpty, "Empty classes map returned");
|
|
|