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

BracedBlockOrTokenLiteral() private method

private BracedBlockOrTokenLiteral ( Symbol spaceName = null, Symbol target = null, int startIndex = -1 ) : LNode
spaceName Symbol
target Symbol
startIndex int
return LNode
		LNode BracedBlockOrTokenLiteral(Symbol spaceName = null, Symbol target = null, int startIndex = -1)
		{
			TokenType la0;
			LNode result = default(LNode);
			// Line 878: (BracedBlock | TokenLiteral)
			la0 = LA0;
			if (la0 == TT.LBrace)
				result = BracedBlock(spaceName, target, startIndex);
			else
				result = TokenLiteral();
			return result;
		}
	
EcsParser