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

console: remove unreachable code #26906

Closed
wants to merge 1 commit into from
Closed

Commits on Mar 25, 2019

  1. console: remove unreachable code

    In the current code, line 497 checks if `item` is `null` or `undefined`.
    However, `item` is guaranteed to be a non-null object or function at
    that point.
    
    * Lines 484/485 set `primitive` to `true` if `item` is null or
      undefined.
    * Line 486 skips line 497 if `primitive` is true (which it will always
      be if `item` is null or undefined) and `properties` is undefined. So
      the only way to get to line 497 when `item` is null or undefined is if
      `properties` is specified.
    * Line 494 skips line 497 if `primitive` is true (which it will always
      be if `item` is null or undefined) and `properties` are specified
      (which will always be the case or else this `else` block is skipped.)
    
    Here are the current lines 484 through 497:
    
          const primitive = item === null ||
              (typeof item !== 'function' && typeof item !== 'object');
          if (properties === undefined && primitive) {
            hasPrimitives = true;
            valuesKeyArray[i] = _inspect(item);
          } else {
            const keys = properties || ObjectKeys(item);
            for (const key of keys) {
              if (map[key] === undefined)
                map[key] = [];
              if ((primitive && properties) || !hasOwnProperty(item, key))
                map[key][i] = '';
              else
                map[key][i] = item == null ? item : _inspect(item[key]);
    
    This change removes the unnecessary ternary in that final line,
    simplifying it to:
    
                map[key][i] = _inspect(item[key]);
    Trott committed Mar 25, 2019
    Configuration menu
    Copy the full SHA
    5e523e6 View commit details
    Browse the repository at this point in the history