mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
16 lines
338 B
C#
16 lines
338 B
C#
|
|
namespace Serein.Script.Node
|
|||
|
|
{
|
|||
|
|
public class ObjectMemberExpressionNode : ASTNode
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 对象成员(嵌套获取)
|
|||
|
|
/// </summary>
|
|||
|
|
public ASTNode Value { get; }
|
|||
|
|
|
|||
|
|
public ObjectMemberExpressionNode(ASTNode value)
|
|||
|
|
{
|
|||
|
|
this.Value = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|