mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-10 19:50:48 +08:00
重写脚本解释器的实现,提高其可读性。
This commit is contained in:
@@ -22,7 +22,7 @@ namespace Serein.Script.Node
|
||||
/// </summary>
|
||||
public ASTNode Value { get; }
|
||||
|
||||
public AssignmentNode(ASTNode targetObject, ASTNode value) => (Target, Value) = (targetObject, value);
|
||||
public AssignmentNode(ASTNode target, ASTNode value) => (Target, Value) = (target, value);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user