You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
People can type whatever they want between JSX tags, including valid / invalid ES imports. We need to be able to ignore these cases. E.g.:
return<p>the import keyword in jsx should be ignored</p>
Will panic because it does not expect a standalone slash.
Challenges:
// can't just count <div> and </div> tag instances to tell when JSX is over// without being able to tell <div {...props}> matches </div><divonClick={/* ... */}/><div>import</div></div>
// <foo ? x> is not a JSX tag and we shouldn't try to treat it as such:
5<foo ? x>8 : false;
The text was updated successfully, but these errors were encountered:
People can type whatever they want between JSX tags, including valid / invalid ES imports. We need to be able to ignore these cases. E.g.:
Will panic because it does not expect a standalone slash.
Challenges:
The text was updated successfully, but these errors were encountered: