Boo.Lang.Compiler.Steps.EmitAssembly.ImplementationFlagsFor C# (CSharp) Метод

ImplementationFlagsFor() статический приватный Метод

static private ImplementationFlagsFor ( Method method ) : MethodImplAttributes
method Boo.Lang.Compiler.Ast.Method
Результат MethodImplAttributes
        static MethodImplAttributes ImplementationFlagsFor(Method method)
        {
            return method.IsRuntime
                ? MethodImplAttributes.Runtime
                : MethodImplAttributes.Managed;
        }
EmitAssembly