prettier/tests/flow/refinements/switch.js

56 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

/* @flow */
function foo(text: string | number): string {
switch (typeof text) {
  case 'string':
   return text;
case 'number':
return text; // error, should return string
  default:
   return 'wat';
 }
}
function bar(text: string | number): string {
switch (typeof text) {
case 'string':
return text[0];
 default:
return (text++) + '';
 }
}
function baz1(text: string | number): string {
switch (typeof text) {
case 'number':
case 'string':
return text[0]; // error, [0] on number
 default:
return 'wat';
 }
}
function baz2(text: string | number): string {
switch (typeof text) {
case 'string':
case 'number':
return text[0]; // error, [0] on number
 default:
return 'wat';
 }
}
function corge(text: string | number | Array<string>): string {
switch (typeof text) {
case 'object':
return text[0];
case 'string':
case 'number':
// using ++ since it isn't valid on arrays or strings.
// should only error for string since Array was filtered out.
return (text++) + '';
 default:
return 'wat';
 }
}