invalid.js 256 B

1234567891011121314151617181920212223
  1. // none of the embedded GraphQL should be formatted
  2. // for they have an invalid escape sequence
  3. gql`
  4. "\x"
  5. type Foo {
  6. a: string
  7. }
  8. `;
  9. gql`
  10. type Foo {
  11. a: string
  12. }
  13. ${stuff}
  14. "\x"
  15. type Bar {
  16. b : string
  17. }
  18. `;