Node represents a line in a Config.
| 570 | |
| 571 | // Node represents a line in a Config. |
| 572 | type Node interface { |
| 573 | Pos() Position |
| 574 | String() string |
| 575 | } |
| 576 | |
| 577 | // KV is a line in the config file that contains a key, a value, and possibly |
| 578 | // a comment. |
no outgoing calls
no test coverage detected