MCPcopy Index your code
hub / github.com/endbasic/endbasic / test_if_uniline_allowed_assignment

Function test_if_uniline_allowed_assignment

core/src/parser.rs:4073–4082  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4071
4072 #[test]
4073 fn test_if_uniline_allowed_assignment() {
4074 do_if_uniline_allowed_test(
4075 "a = 3",
4076 Statement::Assignment(AssignmentSpan {
4077 vref: VarRef::new("a", None),
4078 vref_pos: lc(1, 11),
4079 expr: expr_integer(3, 1, 15),
4080 }),
4081 );
4082 }
4083
4084 #[test]
4085 fn test_if_uniline_allowed_array_assignment() {

Callers

nothing calls this directly

Calls 3

lcFunction · 0.85
expr_integerFunction · 0.85

Tested by

no test coverage detected