| Index: pkg/analyzer/test/reflective_tests.dart
|
| diff --git a/pkg/analyzer/test/reflective_tests.dart b/pkg/analyzer/test/reflective_tests.dart
|
| index 23918799e6cf22a623843c3e76811f745ecaf4d3..820cb163ccfc75abd2d9946050376c903fc70332 100644
|
| --- a/pkg/analyzer/test/reflective_tests.dart
|
| +++ b/pkg/analyzer/test/reflective_tests.dart
|
| @@ -11,6 +11,12 @@ import 'dart:mirrors';
|
| import 'package:unittest/unittest.dart';
|
|
|
| /**
|
| + * A marker annotation used to instruct dart2js to keep reflection information
|
| + * for the annotated classes.
|
| + */
|
| +const ReflectiveTest reflectiveTest = const ReflectiveTest();
|
| +
|
| +/**
|
| * Runs test methods existing in the given [type].
|
| *
|
| * Methods with names starting with `test` are run using [test] function.
|
| @@ -114,9 +120,3 @@ _runTest(ClassMirror classMirror, Symbol symbol) {
|
| class ReflectiveTest {
|
| const ReflectiveTest();
|
| }
|
| -
|
| -/**
|
| - * A marker annotation used to instruct dart2js to keep reflection information
|
| - * for the annotated classes.
|
| - */
|
| -const ReflectiveTest reflectiveTest = const ReflectiveTest();
|
|
|