blob: fdd163e181425d9839db699e44cf88c578775b6e [file] [log] [blame]
// Copyright (c) 2015, 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.
// @dart = 2.9
class Classy {
String get name => "classy general";
String httpSpecific() => throw UnimplementedError();
String ioSpecific() => throw UnimplementedError();
}
bool general() => true;
bool httpSpecific() => false;
bool ioSpecific() => false;
final String name = "general";