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.
191 |
# File 'sig/types.rbs', line 191
def initialize: (row: Integer, column: Integer) -> void
|
Instance Attribute Details
#column ⇒ Integer (readonly)
Returns the value of attribute column.
189 190 191 |
# File 'sig/types.rbs', line 189 def column @column end |
#row ⇒ Integer (readonly)
Returns the value of attribute row.
188 189 190 |
# File 'sig/types.rbs', line 188 def row @row end |