| Class | Node::DSYM |
| In: |
ext/nodeinfo.c
|
| Parent: | Node |
Represents a symbol with interpolation, e.g.:
:"#{next}"
The node is evaluated by duplicating the string stored in the ‘lit’ element, then iterating over the nodes stored in the ‘next’ element. Each node found should evalate to a string, and each resulting string is appended onto the original string. The final resulting string is then converted into a symbol. Interpolation is represented with the EVSTR node.