2626836f36
Bug: b/453914353 Change-Id: I5739913010b9331f6e060150680a0051ed580a2d TEST=pkg/dynamic_modules/test/data/extend_class3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/456406 Reviewed-by: Tess Strickland <sstrickl@google.com> Reviewed-by: Slava Egorov <vegorov@google.com>
14 lines
407 B
Dart
14 lines
407 B
Dart
// Copyright (c) 2025, 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 '../shared/shared.dart';
|
|
|
|
class Child extends Base {}
|
|
|
|
@pragma('dyn-module:entry-point')
|
|
Object? dynamicModuleEntrypoint() {
|
|
dynamic c = Child();
|
|
return [c is Base, isBase(c)];
|
|
}
|