Class: TreeSitterLanguagePack::Point
- Inherits:
-
Object
- Object
- TreeSitterLanguagePack::Point
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#column ⇒ Integer
readonly
Returns the value of attribute column.
-
#row ⇒ Integer
readonly
Returns the value of attribute row.
Instance Method Summary collapse
-
#initialize ⇒ Point
constructor
A new instance of Point.
Constructor Details
#initialize ⇒ Point
Returns a new instance of Point.
185 |
# File 'sig/types.rbs', line 185
def initialize: (row: Integer, column: Integer) -> void
|
Instance Attribute Details
#column ⇒ Integer (readonly)
Returns the value of attribute column.
183 184 185 |
# File 'sig/types.rbs', line 183 def column @column end |
#row ⇒ Integer (readonly)
Returns the value of attribute row.
182 183 184 |
# File 'sig/types.rbs', line 182 def row @row end |