enso/test/Helpers
Pavel Marek 270f708e4f
Implement private methods (#10060)
Add support for private methods. Most of the changes are in parser and compiler. The runtime checking of private functions was already present since #9692

# Important Notes
- Only top-level methods can be declared `private`.
- private method cannot be called from different project
- private method cannot be accessed from polyglot code (private method does not exist for polyglot code)
2024-05-31 08:00:20 +00:00
..
src Implement private methods (#10060) 2024-05-31 08:00:20 +00:00
package.yaml Atom constructors can be private (#9692) 2024-04-29 14:43:18 +02:00
README.md Atom constructors can be private (#9692) 2024-04-29 14:43:18 +02:00

Just a simple test project that contains some private-project entities that can be called from different test projects.

This project is not meant to be run directly.