blob: 728338515bd8e221160fd59bbcd089c219a953d6 [file] [log] [blame]
// Copyright (c) 2021, 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 'lib_shared.dart';
@pragma('dart2js:noInline')
isA(foo) {
return foo is A;
}
@pragma('dart2js:noInline')
isD(foo) {
return foo is D;
}