Results for: "uri"

foo => bar => baz

^^^^^^^^^^

Foo = 1 ^^^^^^^

Foo, Bar = 1 ^^^ ^^^

“foo #@bar”

^^^^^

“foo #{bar}” ^^^^^^^^^^^^

‘foo #{bar}` ^^^^^^^^^^^^

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

foo, bar = baz ^^^^^^^^^^^^^^

Visit a destructured positional parameter node.

foo = 1 and bar => ^foo

^^^^

__ENCODING__ ^^^^^^^^^^^^

__FILE__ ^^^^^^^^

__LINE__ ^^^^^^^^

Visit a heredoc node that is representing a string.

Visit a heredoc node that is representing an xstring.

No documentation available
No documentation available

Interpolate substitution vars in the arg (i.e. $(DEFFILE))

No documentation available

Example:

x.foo
 ^^^^
x.foo(42)
 ^^^^
x&.foo
 ^^^^^
x[42]
 ^^^^
x.foo = 1
 ^^^^^^
x[42] = 1
 ^^^^^^
x + 1
  ^
+x
^
foo(42)
^^^
foo 42
^^^
foo
^^^

Example:

x.foo(42)
      ^^
x[42]
  ^^
x.foo = 1
        ^
x[42] = 1
  ^^^^^^^
x[] = 1
  ^^^^^
x + 1
    ^
foo(42)
    ^^
foo 42
    ^^

Foo &&= bar

becomes

Foo && Foo = bar

Foo ||= bar

becomes

defined?(Foo) ? Foo : Foo = bar

Foo += bar

becomes

Foo = Foo + bar

No documentation available

Reset nil attributes to their default values to make the spec valid

Search took: 7ms  ·  Total Results: 1081