blob: a5557c9d7862001d3c68bc28fe42f80ca085b8f1 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore_for_file: unused_import
import 'package:fidl_fidl_test_before/fidl_async.dart' as before;
import 'package:fidl_fidl_test_during/fidl_async.dart' as during;
class AddMethodImpl extends during.AddMethod {
@override
Future<void> existingMethod() async {}
}
class RemoveMethodImpl extends during.RemoveMethod {
@override
Future<void> existingMethod() async {}
@override
Future<void> oldMethod() async {}
}
class AddEventImpl extends during.AddEvent {
@override
Future<void> existingMethod() async {}
}
class RemoveEventImpl extends during.RemoveEvent {
@override
Future<void> existingMethod() async {}
@override
Stream<void> get oldEvent async* {}
}