Results for: "Array.new"

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 a regular expression literal used in the predicate of a conditional to implicitly match against the last line read by an IO object.

if /foo/i then end
   ^^^^^^

Represents a multi-target expression.

a, (b, c) = 1, 2, 3
   ^^^^^^

Represents the use of the ‘next` keyword.

next 1
^^^^^^

Represents a parenthesized expression

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

Represents the use of the ‘^` operator for pinning an expression in a pattern matching expression.

foo in ^(bar)
       ^^^^^^

The top level node of any parse tree.

Represents the use of the ‘..` or `…` operators.

1..2
^^^^

c if a =~ /left/ ... b =~ /right/
     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Represents a rational number literal.

1.0r
^^^^

Represents a regular expression literal with no interpolation.

/foo/i
^^^^^^

Represents the use of the ‘__LINE__` keyword.

__LINE__
^^^^^^^^

InlineComment objects are the most common. They correspond to comments in the source file like this one that start with #.

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

The error type thrown by all PStore methods.

No documentation available

Indicates a failure to resolve a name or address.

Rinda error base class

Raised when trying to use a canceled tuple.

Raised when trying to use an expired tuple.

Raised when RubyGems is unable to load or activate a gem. Contains the name and version requirements of the gem that either conflicts with already activated gems or that RubyGems is otherwise unable to activate.

Raised when trying to activate a gem, and that gem does not exist on the system. Instead of rescuing from this class, make sure to rescue from the superclass Gem::LoadError to catch all types of load errors.

Raised when there are conflicting gem specs loaded

No documentation available
No documentation available

Raised when removing a gem with the uninstall command fails

Search took: 18ms  ·  Total Results: 3047