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
o~{foo} compiles to {foo: bind$(o, 'foo')} but o~{foo:bar} compiles to {foo: o.bar}
o~{foo}
{foo: bind$(o, 'foo')}
o~{foo:bar}
{foo: o.bar}
The latter ought to be {foo: bind$(o, 'bar')}, right?
{foo: bind$(o, 'bar')}
(Note to self, possibly others: I encountered this while playing with solutions to #899; might be better to fix this before fixing that.)
The text was updated successfully, but these errors were encountered:
0223952
Merge pull request #949 from rhendric/fix/LiveScript-930
68e5755
fix #930
No branches or pull requests
o~{foo}
compiles to{foo: bind$(o, 'foo')}
but
o~{foo:bar}
compiles to{foo: o.bar}
The latter ought to be
{foo: bind$(o, 'bar')}
, right?(Note to self, possibly others: I encountered this while playing with solutions to #899; might be better to fix this before fixing that.)
The text was updated successfully, but these errors were encountered: