blob: 7e5799ae781b971abf84fcda39c8d2cdaac170c4 [file] [log] [blame]
// Copyright (c) 2011, 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 Imports_A02_lib_reexport_filtered;
import "1_Imports_A02_p1_lib.dart" as P hide F;
import "1_Imports_A02_p2_lib.dart";
export "1_Imports_A02_p1_lib.dart" hide F;
final aFoo = "A_FOO";
typedef aTypeAlias(p1, p2);
aFunc() => 'aFunc';
class A extends P.B {
A() { bar = "1_Imports_A02_lib.bar"; }
static final FOO = "A.FOO";
}
//class K P.F implements J {
// K() : super();
//}
abstract class J extends P.I {
// factory J() = K;
J():super.c();
static final FOO = "J.FOO";
}
class SubList<T> {
List<T> list;
SubList() : list = new List<T>() {}
void add(T v) {
list.add(v);
}
}