System.Linq.Dynamic.Scanner.GetToken C# (CSharp) Method

GetToken() public method

public GetToken ( TokenType type ) : Token
type TokenType
return Token
		public Token GetToken(TokenType type)
		{
			var t = new Token(StartPos, EndPos) { Type = type };
			return t;
		}