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

HasNoSemicolons() private method

private HasNoSemicolons ( ) : bool
return bool
		bool HasNoSemicolons()
		{
			TokenType la0;
			// Line 1773: (~(EOF|TT.Semicolon))*
			for (;;) {
				la0 = LA0;
				if (!(la0 == (TokenType) EOF || la0 == TT.Semicolon)){
					if (!TryMatchExcept((int) TT.Semicolon))
						return false;}
				else
					break;
			}
			if (!TryMatch((int) EOF))
				return false;
			return true;
		}
	
EcsParser