Issue with keyword arguments #20
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Consider the following simple demo:
Keyword arguments is a bit problematic... Maybe restrict to global functions and non-virtual object methods?
What is the problem here exactly?
Keyword argument may require runtime resolution if we don't know the function statically, which is the case for function pointers and virtual object methods.
My immediate reaction here is that argument names would need to be part of the function pointer type (which would be a subtype of the same un-named signature).
Yes, we are going to do that.