We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
An example in the playground here.
schema Tree: names?: [str] = [] schema NotAPerson[tree: Tree]: mixin [TreeNamesMixin] configs: Configs { tree = tree } names = configs.tree.names schema TreeNamesMixin for TreeProtocol: configs.tree.names += ["Banyan", "Alder", "Cedar"] protocol TreeProtocol: configs: Configs schema Configs: tree: Tree _treeConfig = Tree {} result = NotAPerson(_treeConfig)
result: configs: tree: names: - Banyan - Alder - Cedar names: - Banyan - Alder - Cedar
result: configs: tree: names: - Banyan - Alder - Cedar - Banyan - Alder - Cedar names: - Banyan - Alder - Cedar
0.10.10-darwin-arm64
The text was updated successfully, but these errors were encountered:
We are trying to fix this issue. You can temporarily workaround it by here
Sorry, something went wrong.
Thank you. I applied your suggestion to resolve the issue.
Peefy
No branches or pull requests
Bug Report
1. Minimal reproduce step (Required)
An example in the playground here.
2. What did you expect to see? (Required)
3. What did you see instead (Required)
4. What is your KCL components version? (Required)
0.10.10-darwin-arm64
The text was updated successfully, but these errors were encountered: