Files
sdk/pkg/front_end/testcases/qualified_lib.dart
T
Peter von der Ahé 2782266d5c Unify QualifiedName and Identifier
Change-Id: Ie7e7131c58186efd5ed4e81e2f010cc240ce8d03
Reviewed-on: https://dart-review.googlesource.com/73341
Reviewed-by: Jens Johansen <jensj@google.com>
Commit-Queue: Peter von der Ahé <ahe@google.com>
2018-09-06 08:57:07 +00:00

28 lines
564 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.
library test.qualified.lib;
import "qualified.dart" as main;
class C<T> extends main.C<T> {
C();
C.a();
factory C.b() = C<T>.a;
}
class Supertype {
supertypeMethod() {
print("I'm supertypeMethod form lib.Supertype");
}
}
abstract class Mixin {
foo() {
print("I'm Mixin.foo");
}
}
typedef VoidFunction = void Function();