We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The self-type of unknown variables is a fresh type varaible, which is not very useful.
However, the resultingType have been exposed to the constraints of the code so it gives nicer information.
For instance, for
(lambda (x) (f 10))
where f is a free variable, the selfType is t1, but the resultingType is (-> ctx number e b)
f
selfType
t1
(-> ctx number e b)
The resultingType can be used for autocompletion for instance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The self-type of unknown variables is a fresh type varaible, which is not very useful.
However, the resultingType have been exposed to the constraints of the code so it gives nicer information.
For instance, for
where
f
is a free variable, theselfType
ist1
, but the resultingType is(-> ctx number e b)
The resultingType can be used for autocompletion for instance.
The text was updated successfully, but these errors were encountered: