Allow U, V, and W for program variables

This commit is contained in:
Patrick Lühne 2020-06-05 18:50:09 +02:00
parent 789cb4f8f8
commit 8c801426a5
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 4 additions and 1 deletions

View File

@ -422,7 +422,10 @@ impl VariableDeclaration
| Some('L')
| Some('M')
| Some('N') => return Ok(crate::Domain::Integer),
Some('X')
Some('U')
| Some('V')
| Some('W')
| Some('X')
| Some('Y')
| Some('Z') => return Ok(crate::Domain::Program),
Some('_') => continue,