Results for: "Logger"

Represents the closing location of the array pattern.

foo in [1, 2]
            ^

The location of the ‘=>` operator, if present.

{ foo => bar }
      ^^

The location of the ‘**` operator.

{ **x }
  ^^

Represents the location of the ‘&` operator.

foo(&args)
    ^

Represents the location of the closing ‘|`.

[1, 2, 3].each { |i| puts x }
                   ^

Represents the location of the ‘&` operator.

def a(&b)
      ^
end

Represents the closing location of the block parameters.

-> (a, b = 1; local) { }
                   ^

foo do |a, b = 1; local|
                       ^
end

Represents the location of the message.

foo.bar &&= value
    ^^^

Represents the location of the operator.

foo.bar &&= value
        ^^^

Represents the location of the message.

foo.bar
    ^^^

Represents the location of the right parenthesis.

foo(bar)
       ^

Represents the location of the message.

foo.bar += value
    ^^^

Returns the location of the binary operator used to modify the receiver. This method is deprecated in favor of binary_operator_loc.

Represents the location of the message.

foo.bar ||= value
    ^^^

Represents the location of the operator.

foo.bar ||= value
        ^^^

Represents the location of the message.

foo.bar = 1
    ^^^

Represents the location of the ‘=>` operator.

foo => bar
    ^^

def inheritance_operator: () -> String?

The location of the ‘=` operator.

@@foo = :bar
      ^

attr_reader operator_loc: Location

The location of the ‘::` delimiter.

::Foo
^^

One::Two
   ^^

Returns the location of the binary operator used to modify the receiver. This method is deprecated in favor of binary_operator_loc.

attr_reader operator_loc: Location

attr_reader delimiter_loc: Location

The location of the ‘=` operator.

::ABC = 123
      ^
Search took: 2ms  ·  Total Results: 3406