Loyc.Syntax.LNodeFactory.Assign C# (CSharp) Method

Assign() public method

public Assign ( Symbol lhs, LNode rhs, int startIndex = -1, int endIndex = -1 ) : LNode
lhs Symbol
rhs LNode
startIndex int
endIndex int
return LNode
		public LNode Assign(Symbol lhs, LNode rhs, int startIndex = -1, int endIndex = -1)
		{
			return Assign(Id(lhs), rhs, startIndex, endIndex);
		}
		public LNode Assign(LNode lhs, LNode rhs, int startIndex = -1, int endIndex = -1)

Same methods

LNodeFactory::Assign ( LNode lhs, LNode rhs, int startIndex = -1, int endIndex = -1 ) : LNode