Skip to content
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

a first version of Slang with no type conflict and an exception if one appear #819

Merged
merged 10 commits into from
Aug 13, 2024
10 changes: 6 additions & 4 deletions smalltalksrc/BaselineOfVMMaker/BaselineOfVMMaker.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ BaselineOfVMMaker >> baseline: spec [
package: 'Slang' with: [
spec requires: #( 'CAST' )
];
package: 'Slang-Tests' with: [
spec requires: #('Slang') ].

"Melchor is a VM-oriented Slang"
spec package: 'Melchor' with: [
spec requires: #('Slang' 'Slang-Tests') ].
package: 'Melchor' with: [
spec requires: #('Slang') ];

package: 'Slang-Tests' with: [
spec requires: #('Slang' 'Melchor') ].


"External Dependencies"
spec baseline: 'SmaCC-GLR' with: [
Expand Down
Loading