-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
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
[Improvement]: Integrate error semtype into jBallerina type engine #42811
Comments
After integrating a test failure for the following narrowed sample. type M map<Cloneable>;
// @type M < MC
type MC map<any|E>;
type E error<map<Cloneable>>;
type Cloneable readonly|Cloneable[]|map<Cloneable>; Looking into it. |
The reason for the above failure is, in the semtype environment we pre-define the readonly type. It includes the types that are not integrated into the compile-time. It is causing the above test failure. |
Well, to fix this we need two environments for ported semtype tests and jballerina unit tests which only support part of the semtypes. It was achieved using a system property as per 10f0ced. |
Closing with #42912 |
Description
$subject.
The text was updated successfully, but these errors were encountered: