Results for: "remove_const"

Response class for Not Implemented responses (status code 501).

The server either does not recognize the request method, or it lacks the ability to fulfil the request.

References:

No documentation available
No documentation available

ReadTimeout, a subclass of Timeout::Error, is raised if a chunk of the response cannot be read within the read_timeout.

Represents the use of the ‘break` keyword.

break foo
^^^^^^^^^

Represents assigning to a local variable in pattern matching.

foo => [bar => baz]
       ^^^^^^^^^^^^

Represents the use of a case statement for pattern matching.

case true
in false
end
^^^^^^^^^

Represents referencing a class variable.

@@foo
^^^^^

Represents an interpolated variable.

"foo #@bar"
     ^^^^^

Represents referencing a global variable.

$foo
^^^^

Represents reading from the implicit ‘it` local variable.

-> { it }
     ^^

Represents reading a local variable. Note that this requires that a local variable of the same name has already been written to in the same scope, otherwise it is parsed as a method call.

foo
^^^

Represents the use of the modifier ‘in` operator.

foo in bar
^^^^^^^^^^

Represents a module declaration involving the ‘module` keyword.

module Foo end
^^^^^^^^^^^^^^

Represents an implicit set of parameters through the use of numbered parameters within a block or lambda.

-> { _1 + _2 }
^^^^^^^^^^^^^^

Represents a parenthesized expression

(10 + 34)
^^^^^^^^^

Represents a rescue statement.

begin
rescue Foo, *splat, Bar => ex
  foo
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
end

‘Foo, *splat, Bar` are in the `exceptions` field. `ex` is in the `reference` field.

Represents the use of the ‘retry` keyword.

retry
^^^^^

Represents the use of the ‘return` keyword.

return 1
^^^^^^^^

This represents the result of a call to ::parse or ::parse_file. It contains the requested structure, any comments that were encounters, and any errors that were encountered.

This is a result specific to the ‘parse` and `parse_file` methods.

This is a result specific to the ‘lex` and `lex_file` methods.

This is a result specific to the ‘parse_lex` and `parse_lex_file` methods.

Indicates a timeout resolving a name or address.

An error that indicates we weren’t able to fetch some data from a source

Search took: 8ms  ·  Total Results: 5438