9 references to List
Microsoft.CSharp (9)
Microsoft\CSharp\RuntimeBinder\Semantics\ExprFactory.cs (2)
243if (first.Kind != ExpressionKind.List) 251Debug.Assert((last as ExprList).OptionalNextListNode.Kind != ExpressionKind.List);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\List.cs (1)
9: base(ExpressionKind.List)
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (4)
550Debug.Assert(args.OptionalNextListNode.Kind != ExpressionKind.List); 559Debug.Assert(args.OptionalNextListNode.Kind != ExpressionKind.List); 593Debug.Assert(arg != null && arg.Kind != ExpressionKind.List); 655Debug.Assert(args.OptionalNextListNode.Kind != ExpressionKind.List);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (2)
21ExpressionKind.List => VisitLIST(pExpr as ExprList), 100case ExpressionKind.List: