6 references to Create
Microsoft.CodeAnalysis.CSharp (4)
Compilation\CSharpSemanticModel.cs (2)
3544symbols = OneOrMany.Create<Symbol>(ReducedExtensionMethodSymbol.Create(symbol)); 4323method = ReducedExtensionMethodSymbol.Create(method);
Symbols\MethodSymbol.cs (1)
776return (this.IsExtensionMethod && this.MethodKind != MethodKind.ReducedExtension) ? ReducedExtensionMethodSymbol.Create(this) : null;
Symbols\ReducedExtensionMethodSymbol.cs (1)
69return Create(method);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\ExtensionMethodTests.cs (2)
2570var extensionMethod = ReducedExtensionMethodSymbol.Create(method.ConstructIfGeneric(typeArgs)); 2574extensionMethod = ReducedExtensionMethodSymbol.Create(method).ConstructIfGeneric(typeArgs);