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
Right now we have an absolute scramble of packages with private variables, global scratch variables with inconsistent naming, and some global state variables with no documentation about what types and methods are expected.
I think we need to refactor this so that private implementation details are kept private, so that multiple SILE processes can be run at once (state and scratch don't clobber each other), and so that we know what changes to public APIs are considered breaking.
The text was updated successfully, but these errors were encountered:
Huge progress has been made on this especially in #1373 and a lot of the package idempotency related commits, but there is more to do. We still have a bunch of global scratch stuff. Luckily most of it is undocumented and we can consider them private, so changing them won't be an official breaking change. But we're not quite out of the woods here yet...
Right now we have an absolute scramble of packages with private variables, global scratch variables with inconsistent naming, and some global state variables with no documentation about what types and methods are expected.
I think we need to refactor this so that private implementation details are kept private, so that multiple SILE processes can be run at once (state and scratch don't clobber each other), and so that we know what changes to public APIs are considered breaking.
The text was updated successfully, but these errors were encountered: