mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-29 20:46:34 +08:00
为Serein.Script增加类型分析,增加了更加详细的Number类型节点,优化了对象节点的链式表达式,修复了Lexer分析词法时,部分Token代码属性错误的问题。
This commit is contained in:
15
Serein.Script/Node/ObjectMemberExpressionNode.cs
Normal file
15
Serein.Script/Node/ObjectMemberExpressionNode.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Serein.Script.Node
|
||||
{
|
||||
public class ObjectMemberExpressionNode : ASTNode
|
||||
{
|
||||
/// <summary>
|
||||
/// 对象成员(嵌套获取)
|
||||
/// </summary>
|
||||
public ASTNode Value { get; }
|
||||
|
||||
public ObjectMemberExpressionNode(ASTNode value)
|
||||
{
|
||||
this.Value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user