public IEnumerable <IInstruction> LoadFunction(IMethod method) { EnsureMethod(method); var code = new AbcCode(_abc); var name = GetMethodName(method); code.GetProperty(name); code.CoerceFunction(); return(code); }