示例#1
0
 public void SetTypeNode(ASTNodeType type)
 {
     type.SetParent(this);
     this.AddSpan(type.GetSpan());
     this.type = type;
 }
示例#2
0
 public void SetReturnTypeNode(ASTNodeType retType)
 {
     retType.SetParent(this);
     this.AddSpan(retType.GetSpan());
     this.returnType = retType;
 }
示例#3
0
 public void SetTypeNode(ASTNodeType type)
 {
     type.SetParent(this);
     this.AddSpan(type.GetSpan());
     this.type = type;
 }
示例#4
0
 public void SetReferencedNode(ASTNodeType referenced)
 {
     referenced.SetParent(this);
     this.AddSpan(referenced.GetSpan());
     this.referenced = referenced;
 }