()
| 476 | } |
| 477 | |
| 478 | func (p *parser) ParseExpression() (Expression, hcl.Diagnostics) { |
| 479 | return p.parseTernaryConditional() |
| 480 | } |
| 481 | |
| 482 | func (p *parser) parseTernaryConditional() (Expression, hcl.Diagnostics) { |
| 483 | // The ternary conditional operator (.. ? .. : ..) behaves somewhat |
no test coverage detected