Loyc.Ecs.Parser.EcsParser.ExprInParens C# (CSharp) Method

ExprInParens() private method

private ExprInParens ( bool allowUnassignedVarDecl ) : LNode
allowUnassignedVarDecl bool
return LNode
		LNode ExprInParens(bool allowUnassignedVarDecl)
		{
			var lp = Match((int) TT.LParen);
			var rp = Match((int) TT.RParen);
			// line 852
			if ((!Down(lp))) {
				return F.Call(S.Tuple, lp.StartIndex, rp.EndIndex, lp.StartIndex, lp.EndIndex);
			}
			return Up(InParens_ExprOrTuple(allowUnassignedVarDecl, lp.StartIndex, rp.EndIndex));
		}
		bool Scan_ExprInParens(bool allowUnassignedVarDecl)
EcsParser