Files
sdk/pkg/analyzer/test/generated/non_hint_code_kernel_test.dart
T
Konstantin Shcheglov e32b446640 Rework getElement() in resynthesizer.
So that it is not recursive anymore.

This also fixes a bug with private classes.
There is no library URI qualifier for classes, even if they are private.

R=brianwilkerson@google.com

Bug:
Change-Id: I3c5c3d56e7f895940192fcee692043aaef25d2dc
Reviewed-on: https://dart-review.googlesource.com/8163
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
2017-09-25 17:08:03 +00:00

38 lines
974 B
Dart

// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'non_hint_code_driver_test.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(NonHintCodeTest_Kernel);
});
}
@reflectiveTest
class NonHintCodeTest_Kernel extends NonHintCodeTest_Driver {
@override
bool get enableKernelDriver => true;
@override
@failingTest
test_deprecatedMemberUse_inDeprecatedLibrary() async {
return super.test_deprecatedMemberUse_inDeprecatedLibrary();
}
@override
@failingTest
test_unusedImport_annotationOnDirective() async {
return super.test_unusedImport_annotationOnDirective();
}
@override
@failingTest
test_unusedImport_metadata() async {
return super.test_unusedImport_metadata();
}
}