| Class | TaskJuggler::TextParser::SourceFileInfo |
| In: |
lib/taskjuggler/TextParser/SourceFileInfo.rb
|
| Parent: | Object |
| columnNo | [R] | |
| fileName | [R] | |
| lineNo | [R] |
Create a new SourceFileInfo object. file is the name of the file. line is the line in this file, col is the column number in the line.
# File lib/taskjuggler/TextParser/SourceFileInfo.rb, line 26 def initialize(file, line, col) @fileName = file @lineNo = line @columnNo = col end