Class: TreeSitterLanguagePack::Node
- Inherits:
-
Object
- Object
- TreeSitterLanguagePack::Node
- Defined in:
- sig/types.rbs
Instance Method Summary collapse
- #byte_range ⇒ ByteRange
- #child ⇒ Node?
- #child_by_field_name ⇒ Node?
- #child_count ⇒ Integer
- #clone ⇒ Node
- #end_byte ⇒ Integer
- #end_position ⇒ Point
- #has_error ⇒ Boolean
- #is_error ⇒ Boolean
- #is_extra ⇒ Boolean
- #is_missing ⇒ Boolean
- #is_named ⇒ Boolean
- #kind ⇒ String
- #kind_id ⇒ Integer
- #named_child ⇒ Node?
- #named_child_count ⇒ Integer
- #parent ⇒ Node?
- #start_byte ⇒ Integer
- #start_position ⇒ Point
- #to_sexp ⇒ String
- #walk ⇒ TreeCursor
Instance Method Details
#child_by_field_name ⇒ Node?
228 |
# File 'sig/types.rbs', line 228
def child_by_field_name: (String name) -> Node?
|
#child_count ⇒ Integer
225 |
# File 'sig/types.rbs', line 225
def child_count: () -> Integer
|
#end_byte ⇒ Integer
214 |
# File 'sig/types.rbs', line 214
def end_byte: () -> Integer
|
#has_error ⇒ Boolean
222 |
# File 'sig/types.rbs', line 222
def has_error: () -> bool
|
#is_error ⇒ Boolean
219 |
# File 'sig/types.rbs', line 219
def is_error: () -> bool
|
#is_extra ⇒ Boolean
221 |
# File 'sig/types.rbs', line 221
def is_extra: () -> bool
|
#is_missing ⇒ Boolean
220 |
# File 'sig/types.rbs', line 220
def is_missing: () -> bool
|
#is_named ⇒ Boolean
218 |
# File 'sig/types.rbs', line 218
def is_named: () -> bool
|
#kind ⇒ String
211 |
# File 'sig/types.rbs', line 211
def kind: () -> String
|
#kind_id ⇒ Integer
212 |
# File 'sig/types.rbs', line 212
def kind_id: () -> Integer
|
#named_child_count ⇒ Integer
227 |
# File 'sig/types.rbs', line 227
def named_child_count: () -> Integer
|
#start_byte ⇒ Integer
213 |
# File 'sig/types.rbs', line 213
def start_byte: () -> Integer
|
#to_sexp ⇒ String
229 |
# File 'sig/types.rbs', line 229
def to_sexp: () -> String
|