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

IdNotLinqKeyword() private method

private IdNotLinqKeyword ( ) : Token
return Token
		Token IdNotLinqKeyword()
		{
			Check(!(_insideLinqExpr && LinqKeywords.Contains(LT(0).Value)), "Did not expect _insideLinqExpr && LinqKeywords.Contains(LT($LI).Value)");
			var t = Match((int) TT.ContextualKeyword);
			// line 113
			return t;
		}
		// A potential LINQ keyword that, it turns out, can be treated as an identifier
EcsParser