wix-incubator / vscode-glean

The extension provides refactoring tools for your React codebase
MIT License
1.46k stars 56 forks source link

Error converting function to class #38

Closed OliverJAsh closed 5 years ago

OliverJAsh commented 5 years ago

When I try to convert this function to a class:

const MyComponent: SFC<Props> = props =>
  true && <div />

I get error:

Property body of ClassMethod expected node to be of a type ["BlockStatement"] but instead got null
borislit commented 5 years ago

@OliverJAsh pushed the fix. Look for it in version 4.2.3. Please validate. The logical operator caused trouble :)

OliverJAsh commented 5 years ago

Thank you!