-
Notifications
You must be signed in to change notification settings - Fork 336
escodegen.generate(AST[, options]);
default options,
{
format: {
indent: {
style: ' ',
base: 0,
adjustMultilineComment: false
},
newline: '\n',
space: ' ',
json: false,
renumber: false,
hexadecimal: false,
quotes: 'single',
escapeless: false,
compact: false,
parentheses: true,
semicolons: true,
safeConcatenation: false
},
moz: {
starlessGenerator: false,
parenthesizedComprehensionBlock: false
},
parse: null,
comment: false,
sourceMap: undefined,
sourceMapRoot: null,
sourceMapWithCode: false,
directive: false,
verbatim: undefined
}
Indent string. Default is 4 spaces (' ').
Base indent level. Default is 0.
Adjust the indentation of multiline comments to keep asterisks vertically aligned. Default is false.
New line string. Default is '\n'.
White space string. Default is ' '.
Enforce JSON format of numeric and string literals. This option takes precedence over option.format.hexadecimal
and option.format.quotes
. Default is false.
Try to generate shorter numeric literals than toString() (9.8.1). Default is false.
Generate hexadecimal a numeric literal if it is shorter than its equivalents. Requires option.format.renumber
. Default is false.
Delimiter to use for string literals. Accepted values are: 'single', 'double', and 'auto'. When 'auto' is specified, escodegen selects a delimiter that results in a shorter literal. Default is 'single'.
Escape as few characters in string literals as necessary. Default is false.
Do not include superfluous whitespace characters and line terminators. Default is false.
Preserve parentheses in new expressions that have no arguments. Default is true.
Preserve semicolons at the end of blocks and programs. Default is true.
Mozilla Parser API compatible parse function. If it is provided, generator tries to use the 'raw' representation. See esprima raw information. Default is null.
If comments are attached to AST, escodegen is going to emit comments to output code. Default is false.
sourceMap
is the source maps's source filename. If a non-empty string value is provided, generate a source map, using the given string as the filename for the generated source that the source map is associated with. For more information about source map itself, see source map library document, V3 draft and HTML5Rocks introduction. Default is undefined
. sourceMapRoot
is the source root for the source map (see the Mozilla documentation). If sourceMapWithCode
is truthy, an object is returned from generate()
of the form: { code: .. , map: .. }
.
Recognize DirectiveStatement
and distinguish it from ExpressionStatement
Providing verbatim code generation option to Expression nodes. verbatim option is provided by user as string.
When generating Expression code, looking up node[option.verbatim]
value and dump it instead of normal code generation.
For example,
escodegen.generate({
type: 'Literal',
value: 200,
'x-verbatim-property': '2e2'
}, { verbatim: 'x-verbatim-property' });
generates
2e2