org.aya.concrete.resolve.ModuleCallback Maven / Gradle / Ivy
// Copyright (c) 2020-2021 Yinsen (Tesla) Zhang.
// Use of this source code is governed by the MIT license that can be found in the LICENSE.md file.
package org.aya.concrete.resolve;
import kala.collection.immutable.ImmutableSeq;
import org.aya.core.def.Def;
import org.jetbrains.annotations.NotNull;
/** CheckedTriConsumer */
@FunctionalInterface
public interface ModuleCallback {
void onModuleTycked(@NotNull ResolveInfo moduleResolve, @NotNull ImmutableSeq defs)
throws E;
}