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

Scan_TParamAttributeKeywords() private method

private Scan_TParamAttributeKeywords ( ) : bool
return bool
		bool Scan_TParamAttributeKeywords()
		{
			TokenType la0;
			// Line 943: ((TT.AttrKeyword|TT.In))*
			for (;;) {
				la0 = LA0;
				if (la0 == TT.AttrKeyword || la0 == TT.In){
					if (!TryMatch((int) TT.AttrKeyword, (int) TT.In))
						return false;}
				else
					break;
			}
			return true;
		}
	
EcsParser