Ruby 4.1.0dev (2025-12-29 revision 4e0bb58a0a374b40b7691e7b7aa88e759a0fc9f2)
Data Fields
pm_binding_powers_t Struct Reference

This struct represents a set of binding powers used for a given token. More...

Data Fields

pm_binding_power_t left
 The left binding power.
 
pm_binding_power_t right
 The right binding power.
 
bool binary
 Whether or not this token can be used as a binary operator.
 
bool nonassoc
 Whether or not this token can be used as non-associative binary operator.
 

Detailed Description

This struct represents a set of binding powers used for a given token.

They are combined in this way to make it easier to represent associativity.

Definition at line 12163 of file prism.c.

Field Documentation

◆ binary

bool pm_binding_powers_t::binary

Whether or not this token can be used as a binary operator.

Definition at line 12171 of file prism.c.

◆ left

pm_binding_power_t pm_binding_powers_t::left

The left binding power.

Definition at line 12165 of file prism.c.

◆ nonassoc

bool pm_binding_powers_t::nonassoc

Whether or not this token can be used as non-associative binary operator.

Non-associative operators (e.g. in and =>) need special treatment in parse_expression.

Definition at line 12177 of file prism.c.

◆ right

pm_binding_power_t pm_binding_powers_t::right

The right binding power.

Definition at line 12168 of file prism.c.


The documentation for this struct was generated from the following file: