-
Notifications
You must be signed in to change notification settings - Fork 14
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
Absolute class name must be supported #56
Comments
This isn't a scenario I had accounted for. Why are you mixing namespace directives with fully qualified class names in another namespace? |
See https://github.com/atk4/ui/blob/3074d460793109f802e3542f6de0fdfec191d38a/docs/js.md?plain=1#L1 for example. The docs page mostly document So I would expect
|
This issue seems tobe related with #47 - what is the difference of |
The |
There is namespace support like:
which renders
class Foo\Bar\X
correctly.but
support is broken. I would expect
Foo\Bar
ignored as the class name is fully qualified, ie.class Foo\Data\Y
rendered.The same for traits, references...
The text was updated successfully, but these errors were encountered: