PropertyAccessNode represents property access like github.event.action
| 155 | |
| 156 | // PropertyAccessNode represents property access like github.event.action |
| 157 | type PropertyAccessNode struct { |
| 158 | PropertyPath string |
| 159 | } |
| 160 | |
| 161 | func (p *PropertyAccessNode) Render() string { |
| 162 | return p.PropertyPath |
nothing calls this directly
no outgoing calls
no test coverage detected