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

Scan_IdNotLinqKeyword() private method

private Scan_IdNotLinqKeyword ( ) : bool
return bool
		bool Scan_IdNotLinqKeyword()
		{
			if (_insideLinqExpr && LinqKeywords.Contains(LT(0).Value))
				return false;
			if (!TryMatch((int) TT.ContextualKeyword))
				return false;
			return true;
		}
	
EcsParser