Results for: "Array"

def foo(bar = 1); end

^^^^^^^

Visit a destructured positional parameter node.

def foo(bar); end

^^^

def foo(*bar); end

^^^^

def foo(*); end

^
No documentation available

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

def foo(bar, *baz); end

^^^^^^^^^

def foo(bar, *baz); end

^^^^^^^^^

def foo((bar, baz)); end

^^^^^^^^^^

Compile a ClassVariableOperatorWriteNode node

Compile a GlobalVariableOperatorWriteNode node

Compile a InstanceVariableOperatorWriteNode node

Compile a LocalVariableOperatorWriteNode node

@@foo += bar

becomes

@@foo = @@foo + bar

$foo += bar

becomes

$foo = $foo + bar

@foo += bar

becomes

@foo = @foo + bar

foo += bar

becomes

foo = foo + bar

Dispatch enter and leave events for ClassVariableOperatorWriteNode nodes and continue walking the tree.

Dispatch enter and leave events for GlobalVariableOperatorWriteNode nodes and continue walking the tree.

Dispatch enter and leave events for InstanceVariableOperatorWriteNode nodes and continue walking the tree.

Dispatch enter and leave events for LocalVariableOperatorWriteNode nodes and continue walking the tree.

Inspect a ClassVariableOperatorWriteNode node.

Inspect a GlobalVariableOperatorWriteNode node.

Inspect a InstanceVariableOperatorWriteNode node.

Inspect a LocalVariableOperatorWriteNode node.

Search took: 3ms  ·  Total Results: 2478