comments.js 526 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import { a //comment1
  2. //comment2
  3. //comment3
  4. as b} from "";
  5. import {
  6. a as //comment1
  7. //comment2
  8. //comment3
  9. b
  10. } from "";
  11. import {
  12. a as //comment2 //comment1
  13. //comment3
  14. b
  15. } from "";
  16. import {
  17. a as //comment3 //comment2 //comment1
  18. b
  19. } from "";
  20. import {
  21. // comment 1
  22. FN1, // comment 2
  23. /* comment 3 */ FN2,
  24. // FN3,
  25. FN4 /* comment 4 */
  26. // FN4,
  27. // FN5
  28. } from "./module";
  29. import {
  30. ExecutionResult,
  31. DocumentNode,
  32. /* tslint:disable */
  33. SelectionSetNode,
  34. /* tslint:enable */
  35. } from 'graphql';