()
| 4467 | |
| 4468 | #[test] |
| 4469 | fn test_label_own_line() { |
| 4470 | do_ok_test( |
| 4471 | "@foo\nPRINT", |
| 4472 | &[ |
| 4473 | Statement::Label(LabelSpan { name: "foo".to_owned(), name_pos: lc(1, 1) }), |
| 4474 | make_bare_builtin_call("PRINT", 2, 1), |
| 4475 | ], |
| 4476 | ); |
| 4477 | } |
| 4478 | |
| 4479 | #[test] |
| 4480 | fn test_label_before_statement() { |
nothing calls this directly
no test coverage detected