4 references to BoundParameter
Microsoft.CodeAnalysis.CSharp (4)
BoundTree\Constructors.cs (1)
477: this(syntax, parameterSymbol, parameterSymbol.Type)
Lowering\SyntheticBoundNodeFactory.cs (1)
251return new BoundParameter(Syntax, p, p.Type) { WasCompilerGenerated = true };
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
362var arguments = Parameters.SelectAsArray((p, s) => (BoundExpression)new BoundParameter(s, p, p.Type), _userMainReturnTypeSyntax);
Symbols\Synthesized\SynthesizedInlineArrayAsSpanMethod.cs (1)
65return f.ExpressionStatement(new BoundParameter(f.Syntax, inlineArrayParameter, f.Compilation.GetSpecialType(SpecialType.System_Byte)) { WasCompilerGenerated = true });