Module: Prism::CallNodeFlags

Defined in:
lib/prism/node.rb

Overview

Flags for call nodes.

Constant Summary collapse

SAFE_NAVIGATION =

&. operator

1 << 0
VARIABLE_CALL =

a call that could have been a local variable

1 << 1
ATTRIBUTE_WRITE =

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

1 << 2