Nested Brace Expanded Properties
See original GitHub issueI get errors from ember/use-brace-expansion
with something like this:
sampleProperty: computed(
'foo.bar.{name,place}',
'foo.baz.{thing,@each.stuff}',
'foo.qux.[]',
function() {
It doesn’t pass until I nest them all like this:
sampleProperty: computed(
'foo.{bar.{name,place},baz.{thing,@each.stuff},qux.[]}',
function() {
This does not work. Ember does not support nested brace expansion, per this comment/code.
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
Nested brace expansion mystery in Bash - Unix Stack Exchange
Brace expansion is a mechanism by which arbitrary strings may be generated. Patterns to be brace-expanded take the form of an optional PREAMBLE, ......
Read more >Nested ant-style properties - MuleSoft Help Center
This means you can't use easily expand properties whose names are stored in properties, but there are some workarounds for older versions of...
Read more >Nested brace expansion mystery in Bash (3 Solutions!!) - YouTube
Nested brace expansion mystery in BashHelpful? Please support me on Patreon: ... Trademarks are property of their respective owners.
Read more >CSS Nesting Module - W3C
These nested style rules act exactly like ordinary style rules—associating properties with elements via selectors—but they "inherit" their ...
Read more >Properties and PropertyHelpers - Apache Ant
In its default configuration Ant will not try to balance braces in property expansions, it will only consume the text up to the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you @rwjblue for reminding me. Sorry for the delay.
Here it is https://github.com/ember-cli/eslint-plugin-ember/pull/709
I confirmed it and it’s definitely something we should take into consideration. Thanks for posting this issue @scottosmith