m
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Linq.Expressions
|
||||
{
|
||||
/// <summary>Represents creating a new array and possibly initializing the elements of the new array.</summary>
|
||||
// Token: 0x020000C1 RID: 193
|
||||
[Token(Token = "0x20000C1")]
|
||||
[DebuggerTypeProxy(typeof(Expression.NewArrayExpressionProxy))]
|
||||
public class NewArrayExpression : Expression
|
||||
{
|
||||
// Token: 0x06000575 RID: 1397 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000575")]
|
||||
[Address(RVA = "0x10D87A0", Offset = "0x10D77A0", VA = "0x1810D87A0")]
|
||||
internal NewArrayExpression(Type type, ReadOnlyCollection<Expression> expressions)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000576 RID: 1398 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000576")]
|
||||
[Address(RVA = "0x10D8850", Offset = "0x10D7850", VA = "0x1810D8850")]
|
||||
internal static NewArrayExpression Make(ExpressionType nodeType, Type type, ReadOnlyCollection<Expression> expressions)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets the static type of the expression that this <see cref="T:System.Linq.Expressions.Expression" /> represents.</summary>
|
||||
/// <returns>The <see cref="P:System.Linq.Expressions.NewArrayExpression.Type" /> that represents the static type of the expression.</returns>
|
||||
// Token: 0x170000F2 RID: 242
|
||||
// (get) Token: 0x06000577 RID: 1399 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170000F2")]
|
||||
public sealed override Type Type
|
||||
{
|
||||
[Token(Token = "0x6000577")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "5")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the bounds of the array if the value of the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property is <see cref="F:System.Linq.Expressions.ExpressionType.NewArrayBounds" />, or the values to initialize the elements of the new array if the value of the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property is <see cref="F:System.Linq.Expressions.ExpressionType.NewArrayInit" />.</summary>
|
||||
/// <returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Linq.Expressions.Expression" /> objects which represent either the bounds of the array or the initialization values.</returns>
|
||||
// Token: 0x170000F3 RID: 243
|
||||
// (get) Token: 0x06000578 RID: 1400 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170000F3")]
|
||||
public ReadOnlyCollection<Expression> Expressions
|
||||
{
|
||||
[Token(Token = "0x6000578")]
|
||||
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression" /> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)" />.</summary>
|
||||
/// <param name="visitor">The visitor to visit this node with.</param>
|
||||
/// <returns>The result of visiting this node.</returns>
|
||||
// Token: 0x06000579 RID: 1401 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000579")]
|
||||
[Address(RVA = "0x10D8820", Offset = "0x10D7820", VA = "0x1810D8820", Slot = "9")]
|
||||
protected internal override Expression Accept(ExpressionVisitor visitor)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.</summary>
|
||||
/// <param name="expressions">The <see cref="P:System.Linq.Expressions.NewArrayExpression.Expressions" /> property of the result.</param>
|
||||
/// <returns>This expression if no children are changed or an expression with the updated children.</returns>
|
||||
// Token: 0x0600057A RID: 1402 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600057A")]
|
||||
[Address(RVA = "0x10D8900", Offset = "0x10D7900", VA = "0x1810D8900")]
|
||||
public NewArrayExpression Update(IEnumerable<Expression> expressions)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user