3 references to BoundParameter
Microsoft.CodeAnalysis.CSharp (3)
BoundTree\Constructors.cs (1)
465: this(syntax, parameterSymbol, parameterSymbol.Type)
Lowering\SyntheticBoundNodeFactory.cs (1)
246return new BoundParameter(Syntax, p, p.Type) { WasCompilerGenerated = true };
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
355var arguments = Parameters.SelectAsArray((p, s) => (BoundExpression)new BoundParameter(s, p, p.Type), _userMainReturnTypeSyntax);