mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
为Serein.Script增加类型分析,增加了更加详细的Number类型节点,优化了对象节点的链式表达式,修复了Lexer分析词法时,部分Token代码属性错误的问题。
This commit is contained in:
@@ -12,17 +12,17 @@ namespace Serein.Script.Node
|
||||
public class MemberFunctionCallNode : ASTNode
|
||||
{
|
||||
/// <summary>
|
||||
/// 需要被调用的对象
|
||||
/// 对象来源
|
||||
/// </summary>
|
||||
public ASTNode Object { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 被调用的方法名称
|
||||
/// 对象中要调用的方法的名称
|
||||
/// </summary>
|
||||
public string FunctionName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 方法参数
|
||||
/// 方法参数来源
|
||||
/// </summary>
|
||||
public List<ASTNode> Arguments { get; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user