()
| 4096 | |
| 4097 | #[test] |
| 4098 | fn test_if_uniline_allowed_builtin_call() { |
| 4099 | do_if_uniline_allowed_test( |
| 4100 | "a 0", |
| 4101 | Statement::Call(CallSpan { |
| 4102 | vref: VarRef::new("A", None), |
| 4103 | vref_pos: lc(1, 11), |
| 4104 | args: vec![ArgSpan { |
| 4105 | expr: Some(expr_integer(0, 1, 13)), |
| 4106 | sep: ArgSep::End, |
| 4107 | sep_pos: lc(1, 14), |
| 4108 | }], |
| 4109 | }), |
| 4110 | ); |
| 4111 | } |
| 4112 | |
| 4113 | #[test] |
| 4114 | fn test_if_uniline_unallowed_statements() { |
nothing calls this directly
no test coverage detected