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
React class component arrow function cannot be recognized.
Example Content:
import React from 'react'
class test extends React.Component{ constructor(props) { super(props); this.state = { } }
initData = (item) =>{ }
render() { return (
export default connect(mapStateToProps)(LinkageSwitchItem)
esprima.parse('some code')
The text was updated successfully, but these errors were encountered:
maybe try my fork, esprima-next
Sorry, something went wrong.
I have fixed this issue myself, what attempts to support VUE.
I've seen your commit, but it could happen again, and I don't see much development here...
No branches or pull requests
React class component arrow function cannot be recognized.
Example Content:
import React from 'react'
class test extends React.Component{
constructor(props) {
super(props);
this.state = {
}
}
initData = (item) =>{
}
render() {
return (
)
}
}
export default connect(mapStateToProps)(LinkageSwitchItem)
Steps to reproduce
Expected output
Actual output
Relevant references
The text was updated successfully, but these errors were encountered: