Inheritance: BaseParser
示例#1
0
 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);
 }
示例#2
0
 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);
 }