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>
8 lines
286 B
Dart
8 lines
286 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.
|
|
|
|
abstract class Base {}
|
|
|
|
bool isBase(Object? value) => value is Base;
|