()
| 4478 | |
| 4479 | #[test] |
| 4480 | fn test_label_before_statement() { |
| 4481 | do_ok_test( |
| 4482 | "@foo PRINT", |
| 4483 | &[ |
| 4484 | Statement::Label(LabelSpan { name: "foo".to_owned(), name_pos: lc(1, 1) }), |
| 4485 | make_bare_builtin_call("PRINT", 1, 6), |
| 4486 | ], |
| 4487 | ); |
| 4488 | } |
| 4489 | |
| 4490 | #[test] |
| 4491 | fn test_label_multiple_same_line() { |
nothing calls this directly
no test coverage detected