项目原始demo,不改动
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Это архивный репозиторий. Вы можете его клонировать или просматривать файлы, но не вносить изменения или открывать задачи/запросы на слияние.

4 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # babel-generator
  2. > Turns an AST into code.
  3. ## Install
  4. ```sh
  5. npm install --save-dev babel-generator
  6. ```
  7. ## Usage
  8. ```js
  9. import {parse} from 'babylon';
  10. import generate from 'babel-generator';
  11. const code = 'class Example {}';
  12. const ast = parse(code);
  13. const output = generate(ast, { /* options */ }, code);
  14. ```
  15. ## Options
  16. Options for formatting output:
  17. name | type | default | description
  18. -----------------------|----------|-----------------|--------------------------------------------------------------------------
  19. auxiliaryCommentBefore | string | | Optional string to add as a block comment at the start of the output file
  20. auxiliaryCommentAfter | string | | Optional string to add as a block comment at the end of the output file
  21. shouldPrintComment | function | `opts.comments` | Function that takes a comment (as a string) and returns `true` if the comment should be included in the output. By default, comments are included if `opts.comments` is `true` or if `opts.minifed` is `false` and the comment contains `@preserve` or `@license`
  22. retainLines | boolean | `false` | Attempt to use the same line numbers in the output code as in the source code (helps preserve stack traces)
  23. retainFunctionParens | boolean | `false` | Retain parens around function expressions (could be used to change engine parsing behavior)
  24. comments | boolean | `true` | Should comments be included in output
  25. compact | boolean or `'auto'` | `opts.minified` | Set to `true` to avoid adding whitespace for formatting
  26. minified | boolean | `false` | Should the output be minified
  27. concise | boolean | `false` | Set to `true` to reduce whitespace (but not as much as `opts.compact`)
  28. quotes | `'single'` or `'double'` | autodetect based on `ast.tokens` | The type of quote to use in the output
  29. filename | string | | Used in warning messages
  30. flowCommaSeparator | boolean | `false` | Set to `true` to use commas instead of semicolons as Flow property separators
  31. jsonCompatibleStrings | boolean | `false` | Set to true to run `jsesc` with "json": true to print "\u00A9" vs. "©";
  32. Options for source maps:
  33. name | type | default | description
  34. -----------------------|----------|-----------------|--------------------------------------------------------------------------
  35. sourceMaps | boolean | `false` | Enable generating source maps
  36. sourceMapTarget | string | | The filename of the generated code that the source map will be associated with
  37. sourceRoot | string | | A root for all relative URLs in the source map
  38. sourceFileName | string | | The filename for the source code (i.e. the code in the `code` argument). This will only be used if `code` is a string.
  39. ## AST from Multiple Sources
  40. In most cases, Babel does a 1:1 transformation of input-file to output-file. However,
  41. you may be dealing with AST constructed from multiple sources - JS files, templates, etc.
  42. If this is the case, and you want the sourcemaps to reflect the correct sources, you'll need
  43. to pass an object to `generate` as the `code` parameter. Keys
  44. should be the source filenames, and values should be the source content.
  45. Here's an example of what that might look like:
  46. ```js
  47. import {parse} from 'babylon';
  48. import generate from 'babel-generator';
  49. const a = 'var a = 1;';
  50. const b = 'var b = 2;';
  51. const astA = parse(a, { sourceFilename: 'a.js' });
  52. const astB = parse(b, { sourceFilename: 'b.js' });
  53. const ast = {
  54. type: 'Program',
  55. body: [].concat(astA.program.body, astB.program.body)
  56. };
  57. const { code, map } = generate(ast, { sourceMaps: true }, {
  58. 'a.js': a,
  59. 'b.js': b
  60. });
  61. // Sourcemap will point to both a.js and b.js where appropriate.
  62. ```