Class: RgGen::Core::InputBase::YAMLLoader::Position
- Defined in:
- lib/rggen/core/input_base/yaml_loader.rb
Instance Attribute Summary collapse
-
#column ⇒ Object
Returns the value of attribute column.
-
#file ⇒ Object
Returns the value of attribute file.
-
#line ⇒ Object
Returns the value of attribute line.
Instance Method Summary collapse
Instance Attribute Details
#column ⇒ Object
Returns the value of attribute column
7 8 9 |
# File 'lib/rggen/core/input_base/yaml_loader.rb', line 7 def column @column end |
#file ⇒ Object
Returns the value of attribute file
7 8 9 |
# File 'lib/rggen/core/input_base/yaml_loader.rb', line 7 def file @file end |
#line ⇒ Object
Returns the value of attribute line
7 8 9 |
# File 'lib/rggen/core/input_base/yaml_loader.rb', line 7 def line @line end |
Instance Method Details
#to_s ⇒ Object
8 9 10 |
# File 'lib/rggen/core/input_base/yaml_loader.rb', line 8 def to_s "file #{file} line #{line} column #{column}" end |