blob: 27f2fc3a56317831d052ffb01ffc75de13eead16 [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.
package main
import (
"fidl/fidl/test/during"
)
type after_during_addMethodImpl struct{}
// Assert that after_during_addMethodImpl implements the AddMethod interface
var _ during.AddMethod = &after_during_addMethodImpl{}
func (_ *after_during_addMethodImpl) ExistingMethod() error {
return nil
}
func (_ *after_during_addMethodImpl) NewMethod() error {
return nil
}
type after_during_removeMethodImpl struct {
during.RemoveMethodTransitionalBase
}
// Assert that after_during_removeMethodImpl implements the RemoveMethod interface
var _ during.RemoveMethod = &after_during_removeMethodImpl{}
func (_ *after_during_removeMethodImpl) ExistingMethod() error {
return nil
}
type after_during_addEventImpl struct{}
// Assert that after_during_addEventImpl implements the AddEvent interface
var _ during.AddEvent = &after_during_addEventImpl{}
func (_ *after_during_addEventImpl) ExistingMethod() error {
return nil
}
type after_during_removeEventImpl struct{}
// Assert that after_during_removeEventImpl implements the RemoveEvent interface
var _ during.RemoveEvent = &after_during_removeEventImpl{}
func (_ *after_during_removeEventImpl) ExistingMethod() error {
return nil
}