/* * Decompiled with CFR 0.152. */ package wasm.misc; import wasm.disassembly.modules.sections.code.Func; import wasm.disassembly.types.FuncType; public interface StreamReplacement { public FuncType getFuncType(); public ReplacementType getReplacementType(); public String getImportName(); public String getExportName(); public boolean codeMatches(Func var1); public static enum ReplacementType { HOOK, HOOKCOPYEXPORT; } }