Typevisitor not collecting constraints correctly
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 53
- Forks
- 16
- PR merge metrics
- No merged PRs in 30d
Description
There is an issue with the type visitor and how it is handling visiting statements. This causes a `NoneType` to try to be concatenated to a string. The issue arises when parsing the following snippet:
````
module mod
stationary stat
manifest aaa
manifest bbb
manifest ccc
manifest ddd
functions:
instructions:
x = 0
if ( 3 == 3) {
x = 3
} else {
x = 5
}
y = x
````
Using the following execution flags:
`-d -i resources/programs/scratch_pad.bs -p ./resources/ -t inkwell`
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the failure with the provided BioScript snippet and the `-d -i resources/programs/scratch_pad.bs -p ./resources/ -t inkwell` flags. Inspect the type visitor's statement handling and constraint collection; done means the example parses without a `NoneType` string-concatenation error and collects its constraints correctly.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- compilers
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100