~ubuntu-branches/ubuntu/natty/monodevelop/natty

« back to all changes in this revision

Viewing changes to src/core/NRefactory/Project/Src/Lexer/Token.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-03-29 23:36:33 UTC
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: james.westby@ubuntu.com-20080329233633-l550uuwvfh1e68at
Tags: upstream-1.0+dfsg
ImportĀ upstreamĀ versionĀ 1.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
                        get {
30
30
                                return new Location(col, line);
31
31
                        }
32
 
                }
 
32
                }
 
33
                
 
34
                public override string ToString ()
 
35
                {
 
36
                        return String.Format ("[Token:kind={0}, col={1}, line={2}, val={3}]", kind, col, line, val);
 
37
                }
 
38
 
33
39
                
34
40
                public Token(int kind) : this(kind, 0, 0)
35
41
                {