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
ensure_import_from
import { A as B }
Pattern:
`$forward({ from: $a, to: $b })` => `sample({ clock: $a, target: $b })` where { $forward <: `forward`, $forward <: ensure_import_from(`"effector"`), }
Code:
import { forward as old } from 'effector' forward({ from: someHappened, to: anotherEvent, })
Output:
import { forward as old, forward } from 'effector' sample({ clock: someHappened, target: anotherEvent })
Problem: It matches forward but sematically it is undefined.
forward
https://app.grit.io/studio?key=7mt4vdorxWbnDIFasJTda
The text was updated successfully, but these errors were encountered:
To be clear, it appears this is not matching the existing forward alias. If it did, the output this:
import { forward as old } from 'effector' sample({ clock: someHappened, target: anotherEvent }) `` What do you expect the output to be in this case?
Sorry, something went wrong.
No branches or pull requests
Pattern:
Code:
Output:
Problem:
It matches
forward
but sematically it is undefined.https://app.grit.io/studio?key=7mt4vdorxWbnDIFasJTda
The text was updated successfully, but these errors were encountered: