Results for: "Pathname"

Represents a string literal that contains interpolation.

"foo #{bar} baz"
^^^^^^^^^^^^^^^^

Represents a symbol literal that contains interpolation.

:"foo #{bar} baz"
^^^^^^^^^^^^^^^^^

Represents an xstring literal that contains interpolation.

`foo #{bar} baz`
^^^^^^^^^^^^^^^^

Represents a hash literal without opening and closing braces.

foo(a: b)
    ^^^^

Represents using a lambda literal (not the lambda method call).

->(value) { value * 2 }
^^^^^^^^^^^^^^^^^^^^^^^

Represents assigning to a local variable using an operator that isn’t ‘=`.

target += value
^^^^^^^^^^^^^^^

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 the use of the ‘=>` operator.

foo => bar
^^^^^^^^^^

Represents writing local variables using a regular expression match with named capture groups.

/(?<foo>bar)/ =~ baz
^^^^^^^^^^^^^^^^^^^^

The top level node of any parse tree.

Represents the use of the splat operator.

[*a]
 ^^

This represents a location in the source.

This represents a comment that was encountered during parsing. It is the base class for all comment types.

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

EmbDocComment objects correspond to comments that are surrounded by =begin and =end.

This represents a magic comment that was encountered during parsing.

This represents an error that was encountered during parsing.

This represents a warning that was encountered during parsing.

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.

Indicates a timeout resolving a name or address.

Templates are used to match tuples in Rinda.

Documentation?

TupleSpaceProxy allows a remote Tuplespace to appear as local.

A TemplateEntry is a Template together with expiry and cancellation data.

Documentation?

Search took: 5ms  ·  Total Results: 2920