Results for: "to_proc"

Represents the location of the message.

foo.bar
    ^^^

Represents the location of the left parenthesis.

foo(bar)
   ^

Represents the location of the right parenthesis.

foo(bar)
       ^

Represents the location of the message.

foo.bar += value
    ^^^

Represents the location of the message.

foo.bar ||= value
    ^^^

Represents the location of the message.

foo.bar = 1
    ^^^

The location of the variable name.

@@foo = :bar
^^^^^

The location of the ‘::` delimiter.

::Foo
^^

One::Two
   ^^

The location of the name of the constant.

::Foo
  ^^^

One::Two
     ^^^

attr_reader delimiter_loc: Location

attr_reader name_loc: Location

The location of the constant name.

FOO = 1
^^^

attr_reader name_loc: Location

attr_reader lparen_loc: Location?

attr_reader rparen_loc: Location?

attr_reader equal_loc: Location?

attr_reader lparen_loc: Location?

attr_reader rparen_loc: Location?

attr_reader keyword_loc: Location

attr_reader opening_loc: Location

attr_reader closing_loc: Location

attr_reader opening_loc: Location?

attr_reader closing_loc: Location?

The location of the global variable’s name.

$foo = :bar
^^^^

The location of the opening brace.

{ a => b }
^
Search took: 8ms  ·  Total Results: 2407