6 writes to OptionalArguments
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
928init.OptionalArguments = StripNamedArguments(init.OptionalArguments);
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (3)
1181arrayInit.OptionalArguments = named.Value; 1263exprArrayInit.OptionalArguments = null; 1298exprArrayInit.OptionalArguments = newList;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\ArrayInitialization.cs (1)
11OptionalArguments = arguments;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
272(pExpr as ExprArrayInit).OptionalArguments = exprRet;
4 references to OptionalArguments
Microsoft.CSharp (4)
Microsoft\CSharp\RuntimeBinder\ExpressionTreeCallRewriter.cs (1)
895Expr list = arrinit.OptionalArguments;
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
928init.OptionalArguments = StripNamedArguments(init.OptionalArguments);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (1)
341Expr args = GenerateArgsList(expr.OptionalArguments);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
271exprRet = Visit((pExpr as ExprArrayInit).OptionalArguments);