You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For variables (#70), the Scala definition should use val and for structs, one idea is to generate a separate type alias for const structs with an ops implicit class that does not contain the field_= methods. It would be nice to come up with an encoding that allows non-const structs to be assigned to a const version and disallow the inverse.
The text was updated successfully, but these errors were encountered:
Right now
const
is discarded, however, it should be possible to support its use in certain places, namely:For variables (#70), the Scala definition should use
val
and for structs, one idea is to generate a separate type alias forconst
structs with anops
implicit class that does not contain thefield_=
methods. It would be nice to come up with an encoding that allows non-const
structs to be assigned to aconst
version and disallow the inverse.The text was updated successfully, but these errors were encountered: