Base:
property
Type
Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.Type
8 references to Type
Microsoft.CodeAnalysis.CSharp (7)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2116=> node.Update(VisitList(node.AttributeLists), VisitList(node.Modifiers), (TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
13949if (attributeLists != this.AttributeLists || modifiers != this.Modifiers || type != this.Type) 13960public new FunctionPointerParameterSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.Modifiers, this.Type); 13962public new FunctionPointerParameterSyntax WithModifiers(SyntaxTokenList modifiers) => Update(this.AttributeLists, modifiers, this.Type);
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
71returnType = typeBinder.BindType(returnTypeParameter.Type, diagnostics, basesBeingResolved, suppressUseSiteDiagnostics);
Symbols\Source\ParameterHelpers.cs (1)
152diagnostics.Add(ErrorCode.ERR_NoVoidParameter, syntax.Type.Location);
Syntax\SyntaxExtensions.cs (1)
442TypeSyntax? paramType = functionPointerTypeSyntax.ParameterList.Parameters[i].Type;
Microsoft.CodeAnalysis.CSharp.Features (1)
SolutionExplorer\CSharpSolutionExplorerSymbolTreeItemProvider.cs (1)
494static (parameter, builder) => AppendType(parameter.Type, builder));