constructor()

in transforms/__testfixtures__/manual-bind-to-arrow/manual-bind-to-arrow2.input.js [4:10]


  constructor(props: Object) {
    super(props);
    this._onChange = this._onChange.bind(this);
    if (!this.props.something.somePreference) {
      this._onChange(SomeConstantsOptions.SOME_CONSTANT);
    }
  }