mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
7ca5ad46ce
Mark tests that contain errors about using a class as a mixin to use language version 2.19 where that's not an error. This may not fix all of the tests because it's the language version of the library where the class is declared that matters, not where the class is used as a mixin. But most tests have all of their declarations in the same library, so this should fix most. Change-Id: I910439ebd2f10f731418dc588b7e4619a0841c16 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/285923 Reviewed-by: Jake Macdonald <jakemac@google.com> Commit-Queue: Jake Macdonald <jakemac@google.com>
74 lines
2.5 KiB
Dart
74 lines
2.5 KiB
Dart
// Copyright (c) 2015, 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.
|
|
|
|
// TODO(51557): Decide if the mixins being applied in this test should be
|
|
// "mixin", "mixin class" or the test should be left at 2.19.
|
|
// @dart=2.19
|
|
|
|
library test.class_location;
|
|
|
|
import "dart:mirrors";
|
|
import "package:expect/expect.dart";
|
|
|
|
part 'class_mirror_location_other.dart';
|
|
|
|
class ClassInMainFile {}
|
|
class SpaceIndentedInMainFile {}
|
|
class TabIndentedInMainFile {}
|
|
|
|
abstract class AbstractClass {}
|
|
typedef bool Predicate(num n);
|
|
|
|
class M {}
|
|
class S {}
|
|
class MA extends S with M {}
|
|
class MA2 = S with M;
|
|
|
|
const metadata = 'metadata';
|
|
|
|
@metadata
|
|
class WithMetadata {}
|
|
|
|
enum Enum { RED, GREEN, BLUE }
|
|
|
|
@metadata
|
|
enum AnnotatedEnum { SALT, PEPPER }
|
|
|
|
// We only check for a suffix of the uri because the test might be run from
|
|
// any number of absolute paths.
|
|
expectLocation(
|
|
DeclarationMirror mirror, String uriSuffix, int line, int column) {
|
|
final location = mirror.location!;
|
|
final uri = location.sourceUri;
|
|
Expect.isTrue(
|
|
uri.toString().endsWith(uriSuffix), "Expected suffix $uriSuffix in $uri");
|
|
Expect.equals(line, location.line, "line");
|
|
Expect.equals(column, location.column, "column");
|
|
}
|
|
|
|
main() {
|
|
String mainSuffix = 'class_mirror_location_test.dart';
|
|
String otherSuffix = 'class_mirror_location_other.dart';
|
|
|
|
// This file.
|
|
expectLocation(reflectClass(ClassInMainFile), mainSuffix, 12, 1);
|
|
expectLocation(reflectClass(SpaceIndentedInMainFile), mainSuffix, 13, 3);
|
|
expectLocation(reflectClass(TabIndentedInMainFile), mainSuffix, 14, 2);
|
|
expectLocation(reflectClass(AbstractClass), mainSuffix, 16, 1);
|
|
expectLocation(reflectType(Predicate), mainSuffix, 17, 1);
|
|
expectLocation(reflectClass(MA), mainSuffix, 21, 1);
|
|
expectLocation(reflectClass(MA2), mainSuffix, 22, 1);
|
|
expectLocation(reflectClass(WithMetadata), mainSuffix, 26, 1);
|
|
expectLocation(reflectClass(Enum), mainSuffix, 29, 1);
|
|
expectLocation(reflectClass(AnnotatedEnum), mainSuffix, 31, 1);
|
|
|
|
// Another part.
|
|
expectLocation(reflectClass(ClassInOtherFile), otherSuffix, 7, 1);
|
|
expectLocation(reflectClass(SpaceIndentedInOtherFile), otherSuffix, 9, 3);
|
|
expectLocation(reflectClass(TabIndentedInOtherFile), otherSuffix, 11, 2);
|
|
|
|
// Synthetic classes.
|
|
Expect.isNull(reflectClass(MA).superclass!.location);
|
|
Expect.isNull((reflect(main) as ClosureMirror).type.location);
|
|
}
|