Syntactic sugar to instantiate an `Expr::Symbol` for testing.
(vref: VarRef, line: usize, col: usize)
| 2069 | |
| 2070 | /// Syntactic sugar to instantiate an `Expr::Symbol` for testing. |
| 2071 | fn expr_symbol(vref: VarRef, line: usize, col: usize) -> Expr { |
| 2072 | Expr::Symbol(SymbolSpan { vref, pos: LineCol { line, col } }) |
| 2073 | } |
| 2074 | |
| 2075 | #[test] |
| 2076 | fn test_varref_to_unannotated_string() { |
no outgoing calls