blob: 295f09aa9dd0fbf47e6cf811e10e505baa8d86ce [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.
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";