2 instantiations of SymbolEditor
Microsoft.CodeAnalysis.Workspaces (2)
Editing\SymbolEditor.cs (2)
38return new SymbolEditor(solution); 51return new SymbolEditor(document.Project.Solution);
32 references to SymbolEditor
Microsoft.CodeAnalysis.NetAnalyzers (20)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\DefineAccessorsForAttributeArguments.Fixer.cs (2)
79SymbolEditor symbolEditor = SymbolEditor.Create(document);
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\EnumsShouldHaveZeroValue.Fixer.cs (4)
106SymbolEditor editor = SymbolEditor.Create(document); 147SymbolEditor editor = SymbolEditor.Create(document);
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\InterfaceMethodsShouldBeCallableByChildTypes.Fixer.cs (6)
123SymbolEditor editor = SymbolEditor.Create(document); 160SymbolEditor editor = SymbolEditor.Create(document); 204SymbolEditor editor = SymbolEditor.Create(document);
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\OperatorOverloadsHaveNamedAlternates.Fixer.cs (2)
116SymbolEditor symbolEditor = SymbolEditor.Create(context.Document);
Microsoft.CodeQuality.Analyzers\QualityGuidelines\SealMethodsThatSatisfyPrivateInterfaces.Fixer.cs (4)
112var editor = SymbolEditor.Create(this.Solution); 139var editor = SymbolEditor.Create(this.Solution);
Microsoft.NetCore.Analyzers\Runtime\MarkAllNonSerializableFields.Fixer.cs (2)
66SymbolEditor editor = SymbolEditor.Create(document);
Microsoft.CodeAnalysis.Workspaces (8)
Editing\SymbolEditor.cs (5)
29/// Creates a new <see cref="SymbolEditor"/> instance. 31public static SymbolEditor Create(Solution solution) 42/// Creates a new <see cref="SymbolEditor"/> instance. 44public static SymbolEditor Create(Document document) 65/// The documents changed since the <see cref="SymbolEditor"/> was constructed.
Editing\SymbolEditorExtensions.cs (3)
20this SymbolEditor editor, 58this SymbolEditor editor, 94this SymbolEditor editor,
Microsoft.Interop.LibraryImportGenerator (4)
Analyzers\CustomMarshallerAttributeFixer.cs (4)
57SymbolEditor symbolEditor = SymbolEditor.Create(fixAllContext.Solution); 169SymbolEditor editor = SymbolEditor.Create(doc.Project.Solution);