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
In FrontEnd, and FortranStream, many methods are declared private.
This prevents anybody from inheriting from these class and extending their behaviour.
For example, I wanted to have a FrontEnd that could parse from a String (for example using ByteArrayInputStream or something similar). One solution would be to inherit from these classes and change some of their methods. Because they are private, this is not possible and the only solution is to copy/change a lot of code :-(
The text was updated successfully, but these errors were encountered:
In FrontEnd, and FortranStream, many methods are declared private.
This prevents anybody from inheriting from these class and extending their behaviour.
For example, I wanted to have a FrontEnd that could parse from a String (for example using ByteArrayInputStream or something similar). One solution would be to inherit from these classes and change some of their methods. Because they are private, this is not possible and the only solution is to copy/change a lot of code :-(
The text was updated successfully, but these errors were encountered: