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

AttributeKeywords() private method

private AttributeKeywords ( VList &attrs ) : void
attrs VList
return void
		void AttributeKeywords(ref VList<LNode> attrs)
		{
			TokenType la0;
			// Line 937: (TT.AttrKeyword)*
			for (;;) {
				la0 = LA0;
				if (la0 == TT.AttrKeyword) {
					var t = MatchAny();
					// line 938
					attrs.Add(F.Id(t));
				} else
					break;
			}
		}
	
EcsParser