This is my code:
+package foo
[] > x
bar 42 > @
The bar object exists in the foo package. Let's create an additional optimization that will modify, in compile time, the code to make it look like this:
+alias foo.bar
+package foo
[] > x
bar 42 > @
Without this, I need to manually add many +alias metas, which is an annoying and error-prone operation.
This is my code:
The
barobject exists in thefoopackage. Let's create an additional optimization that will modify, in compile time, the code to make it look like this:Without this, I need to manually add many
+aliasmetas, which is an annoying and error-prone operation.