CFGLib.Production.IsUnit C# (CSharp) Method

IsUnit() private method

private IsUnit ( ) : bool
return bool
		internal bool IsUnit() {
			if (this.Rhs.Count != 1) {
				return false;
			}
			var rhs = this.Rhs[0];
			if (rhs.IsTerminal) {
				return false;
			}
			return true;
		}
	}