Boo.Lang.Compiler.Steps.EmitAssembly.GetFieldRequiredCustomModifiers C# (CSharp) 메소드

GetFieldRequiredCustomModifiers() 정적인 개인적인 메소드

static private GetFieldRequiredCustomModifiers ( Boo.Lang.Compiler.Ast.Field field ) : System.Type[]
field Boo.Lang.Compiler.Ast.Field
리턴 System.Type[]
        static Type[] GetFieldRequiredCustomModifiers(Field field)
        {
            if (field.IsVolatile)
                return new[] { IsVolatileType };
            return Type.EmptyTypes;
        }
EmitAssembly