SharpTAL.TemplateParser.Token.Token C# (CSharp) Method

Token() public method

public Token ( string token, int position, string source = null, string filename = null ) : System.Linq
token string
position int
source string
filename string
return System.Linq
        public Token(string token, int position = 0, string source = null, string filename = null)
        {
            _token = token;
            _position = position;
            _source = source;
            _filename = filename ?? "";
        }