Module: Prism::CallNodeFlags

Defined in:
lib/prism/node.rb

Overview

Flags for call nodes.

Constant Summary collapse

SAFE_NAVIGATION =

&. operator

1 << 2
VARIABLE_CALL =

a call that could have been a local variable

1 << 3
ATTRIBUTE_WRITE =

a call that is an attribute write, so the value being written should be returned

1 << 4
IGNORE_VISIBILITY =

a call that ignores method visibility

1 << 5