Boo.Lang.Compiler.Steps.EmitAssembly.GetFieldRequiredCustomModifiers C# (CSharp) Méthode

GetFieldRequiredCustomModifiers() static private méthode

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