Skip to content
New issue

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

Fix typing of ReplaceSupers options #11121

Merged
merged 3 commits into from Feb 11, 2020
Merged

Fix typing of ReplaceSupers options #11121

merged 3 commits into from Feb 11, 2020

Commits on Feb 10, 2020

  1. Fix type opts.getObjetRef to opts.getObjectRef

    Quick fix.
    
    ```NodeJs
      opts: {
        getObjetRef: Function,
        methodPath: NodePath,
        superRef: Object,
        isLoose: boolean,
        file: any,
      };
    ```
    Should be:
    
    ```Nodejs
      opts: {
        getObjectRef: Function,
        methodPath: NodePath,
        superRef: Object,
        isLoose: boolean,
        file: any,
      };
    ```
    InsignificantReasons authored and existentialism committed Feb 10, 2020
    Copy the full SHA
    0cc4aa0 View commit details
    Browse the repository at this point in the history
  2. Added // @flow to possibly catch for more errors.

    I think this should do it, right? Let me know if you need anything else changed.
    InsignificantReasons authored and existentialism committed Feb 10, 2020
    Copy the full SHA
    03c8ddb View commit details
    Browse the repository at this point in the history
  3. tweaks

    existentialism committed Feb 10, 2020
    Copy the full SHA
    77abf27 View commit details
    Browse the repository at this point in the history