Babel.Compiler.TypeElementCreatingVisitor.DefineReader C# (CSharp) Метод

DefineReader() защищенный Метод

protected DefineReader ( TypeBuilder type, string name, MethodAttributes attributes, TypeSpecifier attrType ) : MethodBuilder
type System.Reflection.Emit.TypeBuilder
name string
attributes MethodAttributes
attrType TypeSpecifier
Результат System.Reflection.Emit.MethodBuilder
        protected virtual MethodBuilder DefineReader(TypeBuilder type,
                         string name,
                         MethodAttributes attributes,
                         TypeSpecifier attrType)
        {
            CheckMethodConfliction(typeManager.GetTypeData(type),
                                   name,
                                   attrType.NodeType,
                                   new TypedNodeList());
            return DefineMethod(type, name, attributes,
                                attrType.NodeType, new TypedNodeList());
        }