AST.AssignmentList.Create C# (CSharp) Method

Create() public static method

public static Create ( ImmutableList exprs ) : Expr
exprs ImmutableList
return Expr
        public static Expr Create(ImmutableList<Expr> exprs) =>
            new AssignmentList(exprs);