def do_keyword
: () -> String
?
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
, keyword_loc
: Location
, conditions: Array, then_keyword_loc
: Location
?, statements: StatementsNode
? }
attr_reader keyword_loc
: Location
def then_keyword
: () -> String
?
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
, keyword_loc
: Location
, do_keyword_loc
: Location
?, closing_loc
: Location
?, predicate: Prism::node, statements: StatementsNode
? }
attr_reader keyword_loc
: Location
def do_keyword
: () -> String
?
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
, opening_loc
: Location
, content_loc
: Location
, closing_loc
: Location
, unescaped: String
}
Occasionally it’s helpful to treat a string as if it were interpolated so that there’s a consistent interface for working with strings.
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
, keyword_loc
: Location
, lparen_loc
: Location
?, arguments: ArgumentsNode
?, rparen_loc
: Location
? }
attr_reader keyword_loc
: Location
attr_reader lparen_loc
: Location
?
attr_reader rparen_loc
: Location
?
Return the byte offset of the start of the line corresponding to the given byte offset.
The line number where this location starts.
The column number in bytes where this location starts from the start of the line.
Implement the hash pattern matching interface for Location
.
Implement the pretty print interface for Location
.
Implement the hash pattern matching interface for Comment
.
Implement the hash pattern matching interface for MagicComment
.
Implement the hash pattern matching interface for ParseError
.
Implement the hash pattern matching interface for ParseWarning
.
Implement the hash pattern matching interface for Result
.
Implement the hash pattern matching interface for ParseResult
.
Implement the hash pattern matching interface for LexResult
.