internal TypeParser(ParserOptions parserOptions) : base(parserOptions) { _typeRefParser = new TypeRefParser(this, parserOptions); _eventParser = new EventParser(_typeRefParser, parserOptions); _fieldParser = new FieldParser(_typeRefParser, parserOptions); _methodParser = new MethodParser(_typeRefParser, parserOptions); _propertyParser = new PropertyParser(_typeRefParser, parserOptions); }