-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support first-class modules in load syntax #302
Comments
Wildcard loads, in any language, are a bad idea because they make it hard to know where a name is defined. But there is a cleaner way to solve the same problem: first-class modules. In Python, you can say
If Starlark had first-class modules, then a load statement would be able to import the entire module as a value. The syntax would presumably be something like:
or
I think this would be a worthwhile language change. If we're changing the syntax of load, we should also at least consider improving it, by using more Python-like syntax, removing unnecessary parens, and removing quotation marks around identifiers:
|
I agree that wildcard imports are generally bad because of the reasoning issues but I don't see wildcard imports as bad for small applications comparing to big projects with hundreds of files. What do you think about allowing at most one wildcard import in order to simplify reasoning and implementation? Looks like a good compromise to still support Python-like wildcard imports but also don't allow to go out of hand with exponentially growing amount of modules to look into while resolving a symbol. |
I agree with Alan. I'd rather not add complexity to the language and tools, just so that it's easier to write code that will eventually be harder to maintain. |
Every big project with hundreds of files starts as a small application.
I still don't like it. You would have to pay all the complexity of the feature but then place an artificial limit on it. More importantly, wildcard imports are completely incompatible with the Python compilation model. They are feasible to implement in a compiled language like Java or Go because the names defined by the imported module are enumerable at compilation time. By contrast, in a Python-like language, compilation occurs one file at a time, before the module becomes available during execution, so you simply don't know what names would be bound by a wildcard import statement. This means it would be impossible to tell during compilation whether a reference is defined by a wildcard import, predeclared (like 'None'), or undefined. |
See spec proposal: bazelbuild/starlark#111 |
I want to bring to a discussion an option to have a wildcard
load
in order to load all values from a module:Our use case is that we are trying to allow user of Cirrus CI to write configuration files in Starlark rather then YAML. In order for the configuration look prettier than just a bunch of
dicts
we'd like to have a module with syntactic sugar like this:Having to explicitly specify all symbols loaded from a module might be a bit of a struggle. It will be nice if we could do something like that with the standard Starlark rather then creating our own builtin for that:
Also Python itself can do wildcard imports so it seems consistent with the idea of Startlark.
The text was updated successfully, but these errors were encountered: