UNPKG

js-beautify

Version:
1,333 lines (1,166 loc) 179 kB
(function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); else if(typeof define === 'function' && define.amd) define("beautifier", [], factory); else if(typeof exports === 'object') exports["beautifier"] = factory(); else root["beautifier"] = factory(); })(typeof self !== 'undefined' ? self : typeof windows !== 'undefined' ? window : typeof global !== 'undefined' ? global : this, function() { return /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); /******/ } /******/ }; /******/ /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ /******/ // create a fake namespace object /******/ // mode & 1: value is a module id, require it /******/ // mode & 2: merge all properties of value into the ns /******/ // mode & 4: return value when already ns object /******/ // mode & 8|1: behave like require /******/ __webpack_require__.t = function(value, mode) { /******/ if(mode & 1) value = __webpack_require__(value); /******/ if(mode & 8) return value; /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; /******/ var ns = Object.create(null); /******/ __webpack_require__.r(ns); /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); /******/ return ns; /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 0); /******/ }) /************************************************************************/ /******/ ([ /* 0 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /*jshint node:true */ /* The MIT License (MIT) Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ var js_beautify = __webpack_require__(1); var css_beautify = __webpack_require__(12); var html_beautify = __webpack_require__(14); function style_html(html_source, options, js, css) { js = js || js_beautify; css = css || css_beautify; return html_beautify(html_source, options, js, css); } module.exports.js = js_beautify; module.exports.css = css_beautify; module.exports.html = style_html; /***/ }), /* 1 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /*jshint node:true */ /* The MIT License (MIT) Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ var Beautifier = __webpack_require__(2).Beautifier; function js_beautify(js_source_text, options) { var beautifier = new Beautifier(js_source_text, options); return beautifier.beautify(); } module.exports = js_beautify; /***/ }), /* 2 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /*jshint node:true */ /* The MIT License (MIT) Copyright (c) 2007-2018 Einar Lielmanis, Liam Newman, and contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ var mergeOpts = __webpack_require__(3).mergeOpts; var normalizeOpts = __webpack_require__(3).normalizeOpts; var acorn = __webpack_require__(4); var Output = __webpack_require__(5).Output; var Tokenizer = __webpack_require__(6).Tokenizer; var TOKEN = __webpack_require__(6).TOKEN; function remove_redundant_indentation(output, frame) { // This implementation is effective but has some issues: // - can cause line wrap to happen too soon due to indent removal // after wrap points are calculated // These issues are minor compared to ugly indentation. if (frame.multiline_frame || frame.mode === MODE.ForInitializer || frame.mode === MODE.Conditional) { return; } // remove one indent from each line inside this section output.remove_indent(frame.start_line_index); } function in_array(what, arr) { return arr.indexOf(what) !== -1; } function ltrim(s) { return s.replace(/^\s+/g, ''); } function generateMapFromStrings(list) { var result = {}; for (var x = 0; x < list.length; x++) { // make the mapped names underscored instead of dash result[list[x].replace(/-/g, '_')] = list[x]; } return result; } function sanitizeOperatorPosition(opPosition) { opPosition = opPosition || OPERATOR_POSITION.before_newline; if (!in_array(opPosition, validPositionValues)) { throw new Error("Invalid Option Value: The option 'operator_position' must be one of the following values\n" + validPositionValues + "\nYou passed in: '" + opPosition + "'"); } return opPosition; } var validPositionValues = ['before-newline', 'after-newline', 'preserve-newline']; // Generate map from array var OPERATOR_POSITION = generateMapFromStrings(validPositionValues); var OPERATOR_POSITION_BEFORE_OR_PRESERVE = [OPERATOR_POSITION.before_newline, OPERATOR_POSITION.preserve_newline]; var MODE = { BlockStatement: 'BlockStatement', // 'BLOCK' Statement: 'Statement', // 'STATEMENT' ObjectLiteral: 'ObjectLiteral', // 'OBJECT', ArrayLiteral: 'ArrayLiteral', //'[EXPRESSION]', ForInitializer: 'ForInitializer', //'(FOR-EXPRESSION)', Conditional: 'Conditional', //'(COND-EXPRESSION)', Expression: 'Expression' //'(EXPRESSION)' }; function Beautifier(source_text, options) { options = options || {}; this._source_text = source_text || ''; var output; var tokens; var tokenizer; var current_token; var last_type, last_last_text; var flags, previous_flags, flag_store; var handlers, opt; handlers = {}; handlers[TOKEN.START_EXPR] = handle_start_expr; handlers[TOKEN.END_EXPR] = handle_end_expr; handlers[TOKEN.START_BLOCK] = handle_start_block; handlers[TOKEN.END_BLOCK] = handle_end_block; handlers[TOKEN.WORD] = handle_word; handlers[TOKEN.RESERVED] = handle_word; handlers[TOKEN.SEMICOLON] = handle_semicolon; handlers[TOKEN.STRING] = handle_string; handlers[TOKEN.EQUALS] = handle_equals; handlers[TOKEN.OPERATOR] = handle_operator; handlers[TOKEN.COMMA] = handle_comma; handlers[TOKEN.BLOCK_COMMENT] = handle_block_comment; handlers[TOKEN.COMMENT] = handle_comment; handlers[TOKEN.DOT] = handle_dot; handlers[TOKEN.UNKNOWN] = handle_unknown; handlers[TOKEN.EOF] = handle_eof; function create_flags(flags_base, mode) { var next_indent_level = 0; if (flags_base) { next_indent_level = flags_base.indentation_level; if (!output.just_added_newline() && flags_base.line_indent_level > next_indent_level) { next_indent_level = flags_base.line_indent_level; } } var next_flags = { mode: mode, parent: flags_base, last_text: flags_base ? flags_base.last_text : '', // last token text last_word: flags_base ? flags_base.last_word : '', // last TOKEN.WORD passed declaration_statement: false, declaration_assignment: false, multiline_frame: false, inline_frame: false, if_block: false, else_block: false, do_block: false, do_while: false, import_block: false, in_case_statement: false, // switch(..){ INSIDE HERE } in_case: false, // we're on the exact line with "case 0:" case_body: false, // the indented case-action block indentation_level: next_indent_level, line_indent_level: flags_base ? flags_base.line_indent_level : next_indent_level, start_line_index: output.get_line_number(), ternary_depth: 0 }; return next_flags; } // Allow the setting of language/file-type specific options // with inheritance of overall settings options = mergeOpts(options, 'js'); options = normalizeOpts(options); opt = {}; // compatibility, re if (options.brace_style === "expand-strict") { //graceful handling of deprecated option options.brace_style = "expand"; } else if (options.brace_style === "collapse-preserve-inline") { //graceful handling of deprecated option options.brace_style = "collapse,preserve-inline"; } else if (options.braces_on_own_line !== undefined) { //graceful handling of deprecated option options.brace_style = options.braces_on_own_line ? "expand" : "collapse"; } else if (!options.brace_style) { //Nothing exists to set it options.brace_style = "collapse"; } //preserve-inline in delimited string will trigger brace_preserve_inline, everything //else is considered a brace_style and the last one only will have an effect var brace_style_split = options.brace_style.split(/[^a-zA-Z0-9_\-]+/); opt.brace_preserve_inline = false; //Defaults in case one or other was not specified in meta-option opt.brace_style = "collapse"; for (var bs = 0; bs < brace_style_split.length; bs++) { if (brace_style_split[bs] === "preserve-inline") { opt.brace_preserve_inline = true; } else { opt.brace_style = brace_style_split[bs]; } } opt.indent_size = options.indent_size ? parseInt(options.indent_size, 10) : 4; opt.indent_char = options.indent_char ? options.indent_char : ' '; opt.eol = options.eol ? options.eol : 'auto'; opt.preserve_newlines = (options.preserve_newlines === undefined) ? true : options.preserve_newlines; opt.unindent_chained_methods = (options.unindent_chained_methods === undefined) ? false : options.unindent_chained_methods; opt.break_chained_methods = (options.break_chained_methods === undefined) ? false : options.break_chained_methods; opt.max_preserve_newlines = (options.max_preserve_newlines === undefined) ? 0 : parseInt(options.max_preserve_newlines, 10); opt.space_in_paren = (options.space_in_paren === undefined) ? false : options.space_in_paren; opt.space_in_empty_paren = (options.space_in_empty_paren === undefined) ? false : options.space_in_empty_paren; opt.jslint_happy = (options.jslint_happy === undefined) ? false : options.jslint_happy; opt.space_after_anon_function = (options.space_after_anon_function === undefined) ? false : options.space_after_anon_function; opt.keep_array_indentation = (options.keep_array_indentation === undefined) ? false : options.keep_array_indentation; opt.space_before_conditional = (options.space_before_conditional === undefined) ? true : options.space_before_conditional; opt.unescape_strings = (options.unescape_strings === undefined) ? false : options.unescape_strings; opt.wrap_line_length = (options.wrap_line_length === undefined) ? 0 : parseInt(options.wrap_line_length, 10); opt.e4x = (options.e4x === undefined) ? false : options.e4x; opt.end_with_newline = (options.end_with_newline === undefined) ? false : options.end_with_newline; opt.comma_first = (options.comma_first === undefined) ? false : options.comma_first; opt.operator_position = sanitizeOperatorPosition(options.operator_position); // Support passing the source text back with no change opt.disabled = (options.disabled === undefined) ? false : options.disabled; // For testing of beautify preserve:start directive opt.test_output_raw = (options.test_output_raw === undefined) ? false : options.test_output_raw; // force opt.space_after_anon_function to true if opt.jslint_happy if (opt.jslint_happy) { opt.space_after_anon_function = true; } if (options.indent_with_tabs) { opt.indent_char = '\t'; opt.indent_size = 1; } opt.eol = opt.eol.replace(/\\r/, '\r').replace(/\\n/, '\n'); this._reset = function(source_text) { var baseIndentString = ''; var indent_string = new Array(opt.indent_size + 1).join(opt.indent_char); var preindent_index = 0; if (source_text && source_text.length) { while ((source_text.charAt(preindent_index) === ' ' || source_text.charAt(preindent_index) === '\t')) { preindent_index += 1; } baseIndentString = source_text.substring(0, preindent_index); source_text = source_text.substring(preindent_index); } last_type = TOKEN.START_BLOCK; // last token type last_last_text = ''; // pre-last token text output = new Output(indent_string, baseIndentString); // If testing the ignore directive, start with output disable set to true output.raw = opt.test_output_raw; // Stack of parsing/formatting states, including MODE. // We tokenize, parse, and output in an almost purely a forward-only stream of token input // and formatted output. This makes the beautifier less accurate than full parsers // but also far more tolerant of syntax errors. // // For example, the default mode is MODE.BlockStatement. If we see a '{' we push a new frame of type // MODE.BlockStatement on the the stack, even though it could be object literal. If we later // encounter a ":", we'll switch to to MODE.ObjectLiteral. If we then see a ";", // most full parsers would die, but the beautifier gracefully falls back to // MODE.BlockStatement and continues on. flag_store = []; set_mode(MODE.BlockStatement); tokenizer = new Tokenizer(source_text, opt, indent_string); tokens = tokenizer.tokenize(); return source_text; }; this.beautify = function() { // if disabled, return the input unchanged. if (opt.disabled) { return this._source_text; } var sweet_code; var source_text = this._reset(this._source_text); var eol = opt.eol; if (opt.eol === 'auto') { eol = '\n'; if (source_text && acorn.lineBreak.test(source_text || '')) { eol = source_text.match(acorn.lineBreak)[0]; } } current_token = tokens.next(); while (current_token) { handlers[current_token.type](); last_last_text = flags.last_text; last_type = current_token.type; flags.last_text = current_token.text; current_token = tokens.next(); } sweet_code = output.get_code(opt.end_with_newline, eol); return sweet_code; }; function handle_whitespace_and_comments(local_token, preserve_statement_flags) { var newlines = local_token.newlines; var keep_whitespace = opt.keep_array_indentation && is_array(flags.mode); if (local_token.comments_before) { var temp_token = current_token; current_token = local_token.comments_before.next(); while (current_token) { // The cleanest handling of inline comments is to treat them as though they aren't there. // Just continue formatting and the behavior should be logical. // Also ignore unknown tokens. Again, this should result in better behavior. handle_whitespace_and_comments(current_token, preserve_statement_flags); handlers[current_token.type](preserve_statement_flags); current_token = local_token.comments_before.next(); } current_token = temp_token; } if (keep_whitespace) { for (var i = 0; i < newlines; i += 1) { print_newline(i > 0, preserve_statement_flags); } } else { if (opt.max_preserve_newlines && newlines > opt.max_preserve_newlines) { newlines = opt.max_preserve_newlines; } if (opt.preserve_newlines) { if (local_token.newlines > 1) { print_newline(false, preserve_statement_flags); for (var j = 1; j < newlines; j += 1) { print_newline(true, preserve_statement_flags); } } } } } // we could use just string.split, but // IE doesn't like returning empty strings function split_linebreaks(s) { //return s.split(/\x0d\x0a|\x0a/); s = s.replace(acorn.allLineBreaks, '\n'); var out = [], idx = s.indexOf("\n"); while (idx !== -1) { out.push(s.substring(0, idx)); s = s.substring(idx + 1); idx = s.indexOf("\n"); } if (s.length) { out.push(s); } return out; } var newline_restricted_tokens = ['async', 'await', 'break', 'continue', 'return', 'throw', 'yield']; function allow_wrap_or_preserved_newline(force_linewrap) { force_linewrap = (force_linewrap === undefined) ? false : force_linewrap; // Never wrap the first token on a line if (output.just_added_newline()) { return; } var shouldPreserveOrForce = (opt.preserve_newlines && current_token.newlines) || force_linewrap; var operatorLogicApplies = in_array(flags.last_text, tokenizer.positionable_operators) || in_array(current_token.text, tokenizer.positionable_operators); if (operatorLogicApplies) { var shouldPrintOperatorNewline = ( in_array(flags.last_text, tokenizer.positionable_operators) && in_array(opt.operator_position, OPERATOR_POSITION_BEFORE_OR_PRESERVE) ) || in_array(current_token.text, tokenizer.positionable_operators); shouldPreserveOrForce = shouldPreserveOrForce && shouldPrintOperatorNewline; } if (shouldPreserveOrForce) { print_newline(false, true); } else if (opt.wrap_line_length) { if (last_type === TOKEN.RESERVED && in_array(flags.last_text, newline_restricted_tokens)) { // These tokens should never have a newline inserted // between them and the following expression. return; } var proposed_line_length = output.current_line.get_character_count() + current_token.text.length + (output.space_before_token ? 1 : 0); if (proposed_line_length >= opt.wrap_line_length) { print_newline(false, true); } } } function print_newline(force_newline, preserve_statement_flags) { if (!preserve_statement_flags) { if (flags.last_text !== ';' && flags.last_text !== ',' && flags.last_text !== '=' && (last_type !== TOKEN.OPERATOR || flags.last_text === '--' || flags.last_text === '++')) { var next_token = tokens.peek(); while (flags.mode === MODE.Statement && !(flags.if_block && next_token && next_token.type === TOKEN.RESERVED && next_token.text === 'else') && !flags.do_block) { restore_mode(); } } } if (output.add_new_line(force_newline)) { flags.multiline_frame = true; } } function print_token_line_indentation() { if (output.just_added_newline()) { if (opt.keep_array_indentation && is_array(flags.mode) && current_token.newlines) { output.current_line.push(current_token.whitespace_before); output.space_before_token = false; } else if (output.set_indent(flags.indentation_level)) { flags.line_indent_level = flags.indentation_level; } } } function print_token(printable_token) { if (output.raw) { output.add_raw_token(current_token); return; } if (opt.comma_first && last_type === TOKEN.COMMA && output.just_added_newline()) { if (output.previous_line.last() === ',') { var popped = output.previous_line.pop(); // if the comma was already at the start of the line, // pull back onto that line and reprint the indentation if (output.previous_line.is_empty()) { output.previous_line.push(popped); output.trim(true); output.current_line.pop(); output.trim(); } // add the comma in front of the next token print_token_line_indentation(); output.add_token(','); output.space_before_token = true; } } printable_token = printable_token || current_token.text; print_token_line_indentation(); output.add_token(printable_token); } function indent() { flags.indentation_level += 1; } function deindent() { if (flags.indentation_level > 0 && ((!flags.parent) || flags.indentation_level > flags.parent.indentation_level)) { flags.indentation_level -= 1; } } function set_mode(mode) { if (flags) { flag_store.push(flags); previous_flags = flags; } else { previous_flags = create_flags(null, mode); } flags = create_flags(previous_flags, mode); } function is_array(mode) { return mode === MODE.ArrayLiteral; } function is_expression(mode) { return in_array(mode, [MODE.Expression, MODE.ForInitializer, MODE.Conditional]); } function restore_mode() { if (flag_store.length > 0) { previous_flags = flags; flags = flag_store.pop(); if (previous_flags.mode === MODE.Statement) { remove_redundant_indentation(output, previous_flags); } } } function start_of_object_property() { return flags.parent.mode === MODE.ObjectLiteral && flags.mode === MODE.Statement && ( (flags.last_text === ':' && flags.ternary_depth === 0) || (last_type === TOKEN.RESERVED && in_array(flags.last_text, ['get', 'set']))); } function start_of_statement() { var start = false; start = start || (last_type === TOKEN.RESERVED && in_array(flags.last_text, ['var', 'let', 'const']) && current_token.type === TOKEN.WORD); start = start || (last_type === TOKEN.RESERVED && flags.last_text === 'do'); start = start || (last_type === TOKEN.RESERVED && in_array(flags.last_text, newline_restricted_tokens) && !current_token.newlines); start = start || (last_type === TOKEN.RESERVED && flags.last_text === 'else' && !(current_token.type === TOKEN.RESERVED && current_token.text === 'if' && !current_token.comments_before)); start = start || (last_type === TOKEN.END_EXPR && (previous_flags.mode === MODE.ForInitializer || previous_flags.mode === MODE.Conditional)); start = start || (last_type === TOKEN.WORD && flags.mode === MODE.BlockStatement && !flags.in_case && !(current_token.text === '--' || current_token.text === '++') && last_last_text !== 'function' && current_token.type !== TOKEN.WORD && current_token.type !== TOKEN.RESERVED); start = start || (flags.mode === MODE.ObjectLiteral && ( (flags.last_text === ':' && flags.ternary_depth === 0) || (last_type === TOKEN.RESERVED && in_array(flags.last_text, ['get', 'set'])))); if (start) { set_mode(MODE.Statement); indent(); handle_whitespace_and_comments(current_token, true); // Issue #276: // If starting a new statement with [if, for, while, do], push to a new line. // if (a) if (b) if(c) d(); else e(); else f(); if (!start_of_object_property()) { allow_wrap_or_preserved_newline( current_token.type === TOKEN.RESERVED && in_array(current_token.text, ['do', 'for', 'if', 'while'])); } return true; } return false; } function all_lines_start_with(lines, c) { for (var i = 0; i < lines.length; i++) { var line = lines[i].trim(); if (line.charAt(0) !== c) { return false; } } return true; } function each_line_matches_indent(lines, indent) { var i = 0, len = lines.length, line; for (; i < len; i++) { line = lines[i]; // allow empty lines to pass through if (line && line.indexOf(indent) !== 0) { return false; } } return true; } function is_special_word(word) { return in_array(word, ['case', 'return', 'do', 'if', 'throw', 'else', 'await', 'break', 'continue', 'async']); } function handle_start_expr() { // The conditional starts the statement if appropriate. if (!start_of_statement()) { handle_whitespace_and_comments(current_token); } var next_mode = MODE.Expression; if (current_token.text === '[') { if (last_type === TOKEN.WORD || flags.last_text === ')') { // this is array index specifier, break immediately // a[x], fn()[x] if (last_type === TOKEN.RESERVED && in_array(flags.last_text, tokenizer.line_starters)) { output.space_before_token = true; } set_mode(next_mode); print_token(); indent(); if (opt.space_in_paren) { output.space_before_token = true; } return; } next_mode = MODE.ArrayLiteral; if (is_array(flags.mode)) { if (flags.last_text === '[' || (flags.last_text === ',' && (last_last_text === ']' || last_last_text === '}'))) { // ], [ goes to new line // }, [ goes to new line if (!opt.keep_array_indentation) { print_newline(); } } } if (!in_array(last_type, [TOKEN.START_EXPR, TOKEN.END_EXPR, TOKEN.WORD, TOKEN.OPERATOR])) { output.space_before_token = true; } } else { if (last_type === TOKEN.RESERVED) { if (flags.last_text === 'for') { output.space_before_token = opt.space_before_conditional; next_mode = MODE.ForInitializer; } else if (in_array(flags.last_text, ['if', 'while'])) { output.space_before_token = opt.space_before_conditional; next_mode = MODE.Conditional; } else if (in_array(flags.last_word, ['await', 'async'])) { // Should be a space between await and an IIFE, or async and an arrow function output.space_before_token = true; } else if (flags.last_text === 'import' && current_token.whitespace_before === '') { output.space_before_token = false; } else if (in_array(flags.last_text, tokenizer.line_starters) || flags.last_text === 'catch') { output.space_before_token = true; } } else if (last_type === TOKEN.EQUALS || last_type === TOKEN.OPERATOR) { // Support of this kind of newline preservation. // a = (b && // (c || d)); if (!start_of_object_property()) { allow_wrap_or_preserved_newline(); } } else if (last_type === TOKEN.WORD) { output.space_before_token = false; } else { // Support preserving wrapped arrow function expressions // a.b('c', // () => d.e // ) allow_wrap_or_preserved_newline(); } // function() vs function () // yield*() vs yield* () // function*() vs function* () if ((last_type === TOKEN.RESERVED && (flags.last_word === 'function' || flags.last_word === 'typeof')) || (flags.last_text === '*' && (in_array(last_last_text, ['function', 'yield']) || (flags.mode === MODE.ObjectLiteral && in_array(last_last_text, ['{', ',']))))) { output.space_before_token = opt.space_after_anon_function; } } if (flags.last_text === ';' || last_type === TOKEN.START_BLOCK) { print_newline(); } else if (last_type === TOKEN.END_EXPR || last_type === TOKEN.START_EXPR || last_type === TOKEN.END_BLOCK || flags.last_text === '.' || last_type === TOKEN.COMMA) { // do nothing on (( and )( and ][ and ]( and .( // TODO: Consider whether forcing this is required. Review failing tests when removed. allow_wrap_or_preserved_newline(current_token.newlines); } set_mode(next_mode); print_token(); if (opt.space_in_paren) { output.space_before_token = true; } // In all cases, if we newline while inside an expression it should be indented. indent(); } function handle_end_expr() { // statements inside expressions are not valid syntax, but... // statements must all be closed when their container closes while (flags.mode === MODE.Statement) { restore_mode(); } handle_whitespace_and_comments(current_token); if (flags.multiline_frame) { allow_wrap_or_preserved_newline(current_token.text === ']' && is_array(flags.mode) && !opt.keep_array_indentation); } if (opt.space_in_paren) { if (last_type === TOKEN.START_EXPR && !opt.space_in_empty_paren) { // () [] no inner space in empty parens like these, ever, ref #320 output.trim(); output.space_before_token = false; } else { output.space_before_token = true; } } if (current_token.text === ']' && opt.keep_array_indentation) { print_token(); restore_mode(); } else { restore_mode(); print_token(); } remove_redundant_indentation(output, previous_flags); // do {} while () // no statement required after if (flags.do_while && previous_flags.mode === MODE.Conditional) { previous_flags.mode = MODE.Expression; flags.do_block = false; flags.do_while = false; } } function handle_start_block() { handle_whitespace_and_comments(current_token); // Check if this is should be treated as a ObjectLiteral var next_token = tokens.peek(); var second_token = tokens.peek(1); if (second_token && ( (in_array(second_token.text, [':', ',']) && in_array(next_token.type, [TOKEN.STRING, TOKEN.WORD, TOKEN.RESERVED])) || (in_array(next_token.text, ['get', 'set', '...']) && in_array(second_token.type, [TOKEN.WORD, TOKEN.RESERVED])) )) { // We don't support TypeScript,but we didn't break it for a very long time. // We'll try to keep not breaking it. if (!in_array(last_last_text, ['class', 'interface'])) { set_mode(MODE.ObjectLiteral); } else { set_mode(MODE.BlockStatement); } } else if (last_type === TOKEN.OPERATOR && flags.last_text === '=>') { // arrow function: (param1, paramN) => { statements } set_mode(MODE.BlockStatement); } else if (in_array(last_type, [TOKEN.EQUALS, TOKEN.START_EXPR, TOKEN.COMMA, TOKEN.OPERATOR]) || (last_type === TOKEN.RESERVED && in_array(flags.last_text, ['return', 'throw', 'import', 'default'])) ) { // Detecting shorthand function syntax is difficult by scanning forward, // so check the surrounding context. // If the block is being returned, imported, export default, passed as arg, // assigned with = or assigned in a nested object, treat as an ObjectLiteral. set_mode(MODE.ObjectLiteral); } else { set_mode(MODE.BlockStatement); } var empty_braces = !next_token.comments_before && next_token.text === '}'; var empty_anonymous_function = empty_braces && flags.last_word === 'function' && last_type === TOKEN.END_EXPR; if (opt.brace_preserve_inline) // check for inline, set inline_frame if so { // search forward for a newline wanted inside this block var index = 0; var check_token = null; flags.inline_frame = true; do { index += 1; check_token = tokens.peek(index - 1); if (check_token.newlines) { flags.inline_frame = false; break; } } while (check_token.type !== TOKEN.EOF && !(check_token.type === TOKEN.END_BLOCK && check_token.opened === current_token)); } if ((opt.brace_style === "expand" || (opt.brace_style === "none" && current_token.newlines)) && !flags.inline_frame) { if (last_type !== TOKEN.OPERATOR && (empty_anonymous_function || last_type === TOKEN.EQUALS || (last_type === TOKEN.RESERVED && is_special_word(flags.last_text) && flags.last_text !== 'else'))) { output.space_before_token = true; } else { print_newline(false, true); } } else { // collapse || inline_frame if (is_array(previous_flags.mode) && (last_type === TOKEN.START_EXPR || last_type === TOKEN.COMMA)) { if (last_type === TOKEN.COMMA || opt.space_in_paren) { output.space_before_token = true; } if (last_type === TOKEN.COMMA || (last_type === TOKEN.START_EXPR && flags.inline_frame)) { allow_wrap_or_preserved_newline(); previous_flags.multiline_frame = previous_flags.multiline_frame || flags.multiline_frame; flags.multiline_frame = false; } } if (last_type !== TOKEN.OPERATOR && last_type !== TOKEN.START_EXPR) { if (last_type === TOKEN.START_BLOCK && !flags.inline_frame) { print_newline(); } else { output.space_before_token = true; } } } print_token(); indent(); } function handle_end_block() { // statements must all be closed when their container closes handle_whitespace_and_comments(current_token); while (flags.mode === MODE.Statement) { restore_mode(); } var empty_braces = last_type === TOKEN.START_BLOCK; if (flags.inline_frame && !empty_braces) { // try inline_frame (only set if opt.braces-preserve-inline) first output.space_before_token = true; } else if (opt.brace_style === "expand") { if (!empty_braces) { print_newline(); } } else { // skip {} if (!empty_braces) { if (is_array(flags.mode) && opt.keep_array_indentation) { // we REALLY need a newline here, but newliner would skip that opt.keep_array_indentation = false; print_newline(); opt.keep_array_indentation = true; } else { print_newline(); } } } restore_mode(); print_token(); } function handle_word() { if (current_token.type === TOKEN.RESERVED) { if (in_array(current_token.text, ['set', 'get']) && flags.mode !== MODE.ObjectLiteral) { current_token.type = TOKEN.WORD; } else if (in_array(current_token.text, ['as', 'from']) && !flags.import_block) { current_token.type = TOKEN.WORD; } else if (flags.mode === MODE.ObjectLiteral) { var next_token = tokens.peek(); if (next_token.text === ':') { current_token.type = TOKEN.WORD; } } } if (start_of_statement()) { // The conditional starts the statement if appropriate. if (last_type === TOKEN.RESERVED && in_array(flags.last_text, ['var', 'let', 'const']) && current_token.type === TOKEN.WORD) { flags.declaration_statement = true; } } else if (current_token.newlines && !is_expression(flags.mode) && (last_type !== TOKEN.OPERATOR || (flags.last_text === '--' || flags.last_text === '++')) && last_type !== TOKEN.EQUALS && (opt.preserve_newlines || !(last_type === TOKEN.RESERVED && in_array(flags.last_text, ['var', 'let', 'const', 'set', 'get'])))) { handle_whitespace_and_comments(current_token); print_newline(); } else { handle_whitespace_and_comments(current_token); } if (flags.do_block && !flags.do_while) { if (current_token.type === TOKEN.RESERVED && current_token.text === 'while') { // do {} ## while () output.space_before_token = true; print_token(); output.space_before_token = true; flags.do_while = true; return; } else { // do {} should always have while as the next word. // if we don't see the expected while, recover print_newline(); flags.do_block = false; } } // if may be followed by else, or not // Bare/inline ifs are tricky // Need to unwind the modes correctly: if (a) if (b) c(); else d(); else e(); if (flags.if_block) { if (!flags.else_block && (current_token.type === TOKEN.RESERVED && current_token.text === 'else')) { flags.else_block = true; } else { while (flags.mode === MODE.Statement) { restore_mode(); } flags.if_block = false; flags.else_block = false; } } if (current_token.type === TOKEN.RESERVED && (current_token.text === 'case' || (current_token.text === 'default' && flags.in_case_statement))) { print_newline(); if (flags.case_body || opt.jslint_happy) { // switch cases following one another deindent(); flags.case_body = false; } print_token(); flags.in_case = true; flags.in_case_statement = true; return; } if (last_type === TOKEN.COMMA || last_type === TOKEN.START_EXPR || last_type === TOKEN.EQUALS || last_type === TOKEN.OPERATOR) { if (!start_of_object_property()) { allow_wrap_or_preserved_newline(); } } if (current_token.type === TOKEN.RESERVED && current_token.text === 'function') { if (in_array(flags.last_text, ['}', ';']) || (output.just_added_newline() && !(in_array(flags.last_text, ['(', '[', '{', ':', '=', ',']) || last_type === TOKEN.OPERATOR))) { // make sure there is a nice clean space of at least one blank line // before a new function definition if (!output.just_added_blankline() && !current_token.comments_before) { print_newline(); print_newline(true); } } if (last_type === TOKEN.RESERVED || last_type === TOKEN.WORD) { if (last_type === TOKEN.RESERVED && ( in_array(flags.last_text, ['get', 'set', 'new', 'export']) || in_array(flags.last_text, newline_restricted_tokens))) { output.space_before_token = true; } else if (last_type === TOKEN.RESERVED && flags.last_text === 'default' && last_last_text === 'export') { output.space_before_token = true; } else { print_newline(); } } else if (last_type === TOKEN.OPERATOR || flags.last_text === '=') { // foo = function output.space_before_token = true; } else if (!flags.multiline_frame && (is_expression(flags.mode) || is_array(flags.mode))) { // (function } else { print_newline(); } print_token(); flags.last_word = current_token.text; return; } var prefix = 'NONE'; if (last_type === TOKEN.END_BLOCK) { if (previous_flags.inline_frame) { prefix = 'SPACE'; } else if (!(current_token.type === TOKEN.RESERVED && in_array(current_token.text, ['else', 'catch', 'finally', 'from']))) { prefix = 'NEWLINE'; } else { if (opt.brace_style === "expand" || opt.brace_style === "end-expand" || (opt.brace_style === "none" && current_token.newlines)) { prefix = 'NEWLINE'; } else { prefix = 'SPACE'; output.space_before_token = true; } } } else if (last_type === TOKEN.SEMICOLON && flags.mode === MODE.BlockStatement) { // TODO: Should this be for STATEMENT as well? prefix = 'NEWLINE'; } else if (last_type === TOKEN.SEMICOLON && is_expression(flags.mode)) { prefix = 'SPACE'; } else if (last_type === TOKEN.STRING) { prefix = 'NEWLINE'; } else if (last_type === TOKEN.RESERVED || last_type === TOKEN.WORD || (flags.last_text === '*' && (in_array(last_last_text, ['function', 'yield']) || (flags.mode === MODE.ObjectLiteral && in_array(last_last_text, ['{', ',']))))) { prefix = 'SPACE'; } else if (last_type === TOKEN.START_BLOCK) { if (flags.inline_frame) { prefix = 'SPACE'; } else { prefix = 'NEWLINE'; } } else if (last_type === TOKEN.END_EXPR) { output.space_before_token = true; prefix = 'NEWLINE'; } if (current_token.type === TOKEN.RESERVED && in_array(current_token.text, tokenizer.line_starters) && flags.last_text !== ')') { if (flags.inline_frame || flags.last_text === 'else' || flags.last_text === 'export') { prefix = 'SPACE'; } else { prefix = 'NEWLINE'; } } if (current_token.type === TOKEN.RESERVED && in_array(current_token.text, ['else', 'catch', 'finally'])) { if ((!(last_type === TOKEN.END_BLOCK && previous_flags.mode === MODE.BlockStatement) || opt.brace_style === "expand" || opt.brace_style === "end-expand" || (opt.brace_style === "none" && current_token.newlines)) && !flags.inline_frame) { print_newline(); } else { output.trim(true); var line = output.current_line; // If we trimmed and there's something other than a close block before us // put a newline back in. Handles '} // comment' scenario. if (line.last() !== '}') { print_newline(); } output.space_before_token = true; } } else if (prefix === 'NEWLINE') { if (last_type === TOKEN.RESERVED && is_special_word(flags.last_text)) { // no newline between 'return nnn' output.space_before_token = true; } else if (last_type !== TOKEN.END_EXPR) { if ((last_type !== TOKEN.START_EXPR || !(current_token.type === TOKEN.RESERVED && in_array(current_token.text, ['var', 'let', 'const']))) && flags.last_text !== ':') { // no need to force newline on 'var': for (var x = 0...) if (current_token.type === TOKEN.RESERVED && current_token.text === 'if' && flags.last_text === 'else') { // no newline for } else if { output.space_before_token = true; } else { print_newline(); } } } else if (current_token.type === TOKEN.RESERVED && in_array(current_token.text, tokenizer.line_starters) && flags.last_text !== ')') { print_newline(); } } else if (flags.multiline_frame && is_array(flags.mode) && flags.last_text === ',' && last_last_text === '}') { print_newline(); // }, in lists get a newline treatment } else if (prefix === 'SPACE') { output.space_before_token = true; } if (last_type === TOKEN.WORD || last_type === TOKEN.RESERVED) { output.space_before_token = true; } print_token(); flags.last_word = current_token.text; if (current_token.type === TOKEN.RESERVED) { if (current_token.text === 'do') { flags.do_block = true; } else if (current_token.text === 'if') { flags.if_block = true; } else if (current_token.text === 'import') { flags.import_block = true; } else if (flags.import_block && current_token.type === TOKEN.RESERVED && current_token.text === 'from') { flags.import_block = false; } } } function handle_semicolon() { if (start_of_statement()) { // The conditional starts the statement if appropriate. // Semicolon can be the start (and end) of a statement output.space_before_token = false; } else { handle_whitespace_and_comments(current_token); } var next_token = tokens.peek(); while (flags.mode === MODE.Statement && !(flags.if_block && next_token && next_token.type === TOKEN.RESERVED && next_token.text === 'else') && !flags.do_block) { restore_mode(); } // hacky but effective for the moment if (flags.import_block) { flags.import_block = false; } print_token(); } function handle_string() { if (start_of_statement()) { // The conditional starts the statement if appropriate. // One difference - strings want at least a space before output.space_before_token = true; } else { handle_whitespace_and_comments(current_token); if (last_type === TOKEN.RESERVED || last_type === TOKEN.WORD || flags.inline_frame) { output.space_before_token = true; } else if (last_type === TOKEN.COMMA || last_type === TOKEN.START_EXPR || last_type === TOKEN.EQUALS || last_type === TOKEN.OPERATOR) { if (!start_of_object_property()) { allow_wrap_or_preserved_newline(); } } else { print_newline(); } } print_token(); } function handle_equals() { if (start_of_statement()) { // The conditional starts the statement if appropriate. } else { handle_whitespace_and_comments(current_token); } if (flags.declaration_statement) { // just got an '=' in a var-line, different formatting/line-breaking, etc will now be done flags.declaration_assignment = true; } output.space_before_token = true; print_token(); output.space_before_token = true; } function handle_comma() { handle_whitespace_and_comments(current_token, true); print_token(); output.space_before_token = true; if (flags.declaration_statement) { if (is_expression(flags.parent.mode)) { // do not break on comma, for(var a = 1, b = 2) flags.declaration_assignment = false; } if (flags.declaration_assignment) { flags.declaration_assignment = false; print_newline(false, true); } else if (opt.comma_first) { // for comma-first, we want to allow a newline before the comma // to turn into a newline after the comma, which we will fixup later allow_wrap_or_preserved_newline(); } } else if (flags.mode === MODE.ObjectLiteral || (flags.mode === MODE.Statement && flags.parent.mode === MODE.ObjectLiteral)) { if (flags.m