Syntactic sugar to instantiate a `LineCol` for testing.
(line: usize, col: usize)
| 2044 | |
| 2045 | /// Syntactic sugar to instantiate a `LineCol` for testing. |
| 2046 | fn lc(line: usize, col: usize) -> LineCol { |
| 2047 | LineCol { line, col } |
| 2048 | } |
| 2049 | |
| 2050 | /// Syntactic sugar to instantiate an `Expr::Boolean` for testing. |
| 2051 | fn expr_boolean(value: bool, line: usize, col: usize) -> Expr { |
no outgoing calls