public TypeParser(ITypePartReflector reflector, Parser <TypeParts> parser) { _reflector = reflector; _parser = parser; }
public ReflectionParser(IParser <TypeInfo> types, ITypePartReflector parts, Parser <MemberParts> parser) { _types = types; _parts = parts; _parser = parser; }
public TypeParser(ITypePartReflector reflector) : this(reflector, TypePartsParser.Default) { }
public ReflectionParser(IParser <TypeInfo> types, ITypePartReflector parts) : this(types, parts, MemberPartsParser.Default) { }