property.js 332 B

12345678910111213141516171819
  1. class A {
  2. foobar =
  3. // comment to break
  4. 1 +
  5. // comment to break again
  6. 2;
  7. }
  8. class B {
  9. someInstanceProperty = this.props.foofoofoofoofoofoo &&
  10. this.props.barbarbarbar;
  11. someInstanceProperty2 = { foo: this.props.foofoofoofoofoofoo &&
  12. this.props.barbarbarbar };
  13. someInstanceProperty3 =
  14. "foo";
  15. }