Module: Prism::ArgumentsNodeFlags
- Defined in:
- lib/prism/node.rb
Overview
Flags for arguments nodes.
Constant Summary collapse
- CONTAINS_FORWARDING =
if the arguments contain forwarding
1 << 2
- CONTAINS_KEYWORDS =
if the arguments contain keywords
1 << 3
- CONTAINS_KEYWORD_SPLAT =
if the arguments contain a keyword splat
1 << 4
- CONTAINS_SPLAT =
if the arguments contain a splat
1 << 5
- CONTAINS_MULTIPLE_SPLATS =
if the arguments contain multiple splats
1 << 6