4 instantiations of CSDeclarationWriter
Microsoft.Cci.Extensions (4)
Extensions\CSharp\CSharpCciExtensions.cs (1)
48
var writer = new
CSDeclarationWriter
(syntaxWriter, new AttributesFilter(includeAttributes), false, true);
Writers\CSharp\CSDeclarationHelper.cs (2)
95
_stringWriter = new
CSDeclarationWriter
(tsw, _filter, _forCompilation, _includeFakeAttributes);
104
_tokenWriter = new
CSDeclarationWriter
(_tokenizer, _filter, _forCompilation, _includeFakeAttributes);
Writers\CSharp\CSharpWriter.cs (1)
34
_declarationWriter = new
CSDeclarationWriter
(_syntaxWriter, filter, !apiOnly);
5 references to CSDeclarationWriter
Microsoft.Cci.Extensions (5)
Extensions\CSharp\CSharpCciExtensions.cs (1)
48
var
writer = new CSDeclarationWriter(syntaxWriter, new AttributesFilter(includeAttributes), false, true);
Writers\CSharp\CSDeclarationHelper.cs (2)
19
private
CSDeclarationWriter
_stringWriter;
22
private
CSDeclarationWriter
_tokenWriter;
Writers\CSharp\CSharpWriter.cs (2)
20
private readonly
CSDeclarationWriter
_declarationWriter;
174
_declarationWriter.WriteDeclaration(
CSDeclarationWriter
.GetDummyConstructor(type));