Boo.Lang.Compiler.Steps.EmitAssembly.ImplementationFlagsFor C# (CSharp) Method

ImplementationFlagsFor() static private method

static private ImplementationFlagsFor ( Method method ) : MethodImplAttributes
method Boo.Lang.Compiler.Ast.Method
return MethodImplAttributes
        static MethodImplAttributes ImplementationFlagsFor(Method method)
        {
            return method.IsRuntime
                ? MethodImplAttributes.Runtime
                : MethodImplAttributes.Managed;
        }
EmitAssembly