6 writes to OptionalArguments
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
905init.OptionalArguments = StripNamedArguments(init.OptionalArguments);
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (3)
1156arrayInit.OptionalArguments = named.Value; 1238exprArrayInit.OptionalArguments = null; 1273exprArrayInit.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)
894Expr list = arrinit.OptionalArguments;
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
905init.OptionalArguments = StripNamedArguments(init.OptionalArguments);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (1)
340Expr args = GenerateArgsList(expr.OptionalArguments);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
271exprRet = Visit((pExpr as ExprArrayInit).OptionalArguments);