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

Scan_BracedBlock() private method

private Scan_BracedBlock ( Symbol spaceName = null, Symbol target = null, int startIndex = -1 ) : bool
spaceName Symbol
target Symbol
startIndex int
return bool
		bool Scan_BracedBlock(Symbol spaceName = null, Symbol target = null, int startIndex = -1)
		{
			if (!TryMatch((int) TT.LBrace))
				return false;
			if (!TryMatch((int) TT.RBrace))
				return false;
			return true;
		}
	
EcsParser