JetBrains Rider 2021.1 Help

Refactoring JavaScript

Refactoring means updating the source code without changing the behaviour of the application. Refactoring helps you keep your code solid, dry, and easy to maintain.

Move Symbol refactoring

Besides moving files and folders, JetBrains Rider lets you move JavaScript top-level symbols. The Move Symbol Refactoring works for classes, functions, and variables in ES6 modules.

Move a class, a function, or a variable

  1. Select the symbol to move.

  2. Press F6 or choose Refactor | Move from the context menu or from the main menu. Alternatively, choose Refactor | Refactor This or press Ctrl+Alt+Shift+T, then choose Move from the list.

    The Move Module Members dialog opens. the Chrome icon

  3. Specify the destination file and select the members to move.

  4. By default, JetBrains Rider automatically raises the visibility of the members to the required level. If you want to keep the visibility level unchanged, click As is in the Visibility.

Pull Class Members Up refactoring

The Pull Class Members Up refactoring moves class methods upwards in the class hierarchy – from the current class to a superclass.

Example: moving a class method to a superclass

Suppose you have a class AccountingDepartment that extends an abstract class Department. In this example, the Pull Class Members Up refactoring moves the printMeeting() method from AccountingDepartment to its superclass Department.

class Department { name; printName() { console.log("Department name: " + this.name); } } class AccountingDepartment extends Department { printMeeting() { console.log("The Accounting Department meets each Monday at 10am."); } generateReports() { console.log("Generating accounting reports..."); } }
class Department { name; printName() { console.log("Department name: " + this.name); } printMeeting() { console.log("The Accounting Department meets each Monday at 10am."); } } class AccountingDepartment extends Department { generateReports() { console.log("Generating accounting reports..."); } }

Move the methods of a class to a superclass

  1. Position the caret anywhere inside the class from which you want to pull the members up.

  2. Choose Refactor | Pull Members Up from the main menu or from the context menu. The Pull Members Up dialog opens.

  3. From the list, choose the superclass where you want to move the methods.

  4. To pull a method up, select the checkbox next to it in the Members to be pulled up list.

Rename refactorings

Besides Renaming files and folders, which is available in the context of any language, you can also rename classes, methods, functions, variables, and parameters. JetBrains Rider changes the name of the symbol in its declaration and by default all its usages in the current project.

Rename classes and their methods

  1. In the editor, place the caret or select the class or method to rename and press Shift+F6 or choose Refactor | Rename from the context menu or from the main menu.

  2. In the Rename dialog that opens, type the new name of the class or method.

  3. Optionally:

    • Select the Search in comments and strings and Search for text occurrences checkboxes to rename the usages of the class or method in comments, string literals, and text.

    • By default, the class or method is renamed in the entire project. You can select another scope from the list.

Keep the names of classes and containing files in compliance

When you rename a class, JetBrains Rider also suggests renaming the file if it has the same name. If you accept the suggestion, JetBrains Rider updates the name of this file in import statements in other files.

If you reject this suggestion, you can rename the file at any time later using the Rename file... intention action. Another intention action suggests moving the class to a new file with the corresponding name. The format of the suggested name is determined by the style chosen from the Filename convention list on the Code Style: JavaScript page.

ws_js_refactoring_rename_file_intention_custom_naming_convention.png

This is useful if you have just created a new file but then came up with a better name when started typing a class or interface in it. To invoke the intention actions, position the caret at the name of the class of interest and press Alt+Enter.

Rename functions, variables, and parameters

Rename a function

The Rename refactoring for functions, variables, and parameters is performed inplace, but you can press Shift+F6 to configure the refactoring scope in the Rename dialog.

To open the Rename dialog by default, open the Settings/Preferences dialog Ctrl+Alt+S, go to Editor | Code editing, and select the In modal dialogs option in the Specify refactorings options area.

Refactoring settings: open settings in modal dialogs
  1. In the editor, place the caret or select the function, variable, or parameter to rename and press Shift+F6 or choose Refactor | Rename from the context menu or from the main menu.

  2. If JetBrains Rider detects usages of the symbol in comments or strings, specify whether you want these usages also renamed or not.

  3. In the field with canvas, type the new name of the function, variable, or parameter.

  4. Alternatively:

    Press Shift+F6 once more to open the Rename dialog.

    • Select the Search in comments and strings and Search for text occurrences checkboxes to rename the usages of the symbol in comments, string literals, and text.

    • By default, the symbol is renamed in the entire project. You can select another scope from the list.

Rename constants

  1. In the editor, place the caret or select the constant to rename and press Shift+F6 or choose Refactor | Rename from the context menu or from the main menu.

  2. In the Rename dialog that opens, type the new name of the constant.

  3. Optionally:

    • Select the Search in comments and strings and Search for text occurrences checkboxes to rename the usages of the constant in comments, string literals, and text.

    • By default, the constant is renamed in the entire project. You can select another scope from the list.

Rename dynamic usages of symbols

Because of the dynamic nature of JavaScript, in some cases a dynamic reference is a valid usage and should be renamed. However, often renaming dynamic usages is not the expected behavior. In the example below, changing test() to test1() in rename.test() is correct while in hello.test() it would be an error.

class Rename{ test() { return 12345; } } let rename = new Rename(); let hello = window["Test"]; let a = rename.test(); let b = hello.test();
class Rename{ test1() { return 12345; } } let rename = new Rename(); let hello = window["Test"]; let a = rename.test1(); let b = hello.test();
class Rename{ test1() { return 12345; } } let rename = new Rename(); let hello = window["Test"]; let a = rename.test1(); let b = hello.test1();

Therefore JetBrains Rider always shows the Preview window before applying a complex refactoring.

Refactoring preview for
                 dynamic usages

Extract refactorings

JetBrains Rider provides various Extract refactorings to introduce parameters, variables, constants, fields, methods, and functions. To run any of these refactorings, select the expression to refactor and choose Refactor | <target>. You can select an entire expression or position the caret anywhere inside it and JetBrains Rider will help you with the selection.

Introduce Parameter

Use the Introduce Parameter refactoring to replace an expression in the calls of a function with a parameter. JetBrains Rider will update the declaration and the calls of the function accordingly. The default value of the new parameter can be initialized inside the function body or passed through function calls.

Suppose you have a piece of code with a hardcoded 1 in the function calculate_sum(i). With the Introduce Parameter refactoring, you can replace this hardcoded 1 with a i2 parameter. The new i2 parameter can be extracted as optional or as required.

Example 1: Introducing an optional parameter
A new parameter i2 is extracted as an optional parameter. The new parameter is initialized in the body of calculate_sum(i) and the call of calculate_sum(i) in show_sum() is not changed.

See Choosing the parameter type (optional) below.

function calculate_sum(i) { alert('Adding ' + 1 + ' to ' + i); return 1 + i; } function show_sum() { alert('Result: ' + calculate_sum(5)); }
function calculate_sum(i, i2) { i2 = i2 || 1; alert('Adding ' + i2 + ' to ' + i); return i2 + i; } function show_sum() { alert('Result: ' + calculate_sum(5)); }

Example 2: Introducing a required parameter
A new parameter i2 is extracted as a required parameter, the call of calculate_sum(i) in show_sum() is changed accordingly.

See Choosing the parameter type (required) below.

function calculate_sum(i) { alert('Adding ' + 1 + ' to ' + i); return 1 + i; } function show_sum() { alert('Result: ' + calculate_sum(5)); }
function calculate_sum(i, i2) { alert('Adding ' + i2 + ' to ' + i); return i2 + i; } function show_sum() { alert('Result: ' + calculate_sum(5, 1)); }

Introduce a parameter

  1. In the editor, position the caret within the expression that you want to convert into a parameter and press Ctrl+Alt+P or select Refactor | Introduce Parameter from the context menu.

    Alternatively, do one of the following:

    • Press Ctrl+Alt+Shift+T and select Introduce Parameter.

    • From the main menu, select Refactor | Extract | Parameter.

  2. If several expressions are detected in the current cursor location, select the required one from the Expressions list.

    ws_js_extract_parameter_select_expression.png

  3. If more than one occurrence of the selected expression is found, select Replace this occurrence only or Replace all occurrences from the Multiple occurrences found list.

    ws_js_extract_parameter_multiple_occurrences.png

    Finally, the popup for configuring the refactoring appears.

    ws_js_extract_parameter_specify_parameter_name_and_type.png
  4. Select the Generate JSDoc to have a JSDoc comment block generated. This may be helpful if you need to specify a custom default parameter value. Learn more from the JSDoc official website.

  5. Choose the type of the new parameter (optional or required) and specify its default value, if applicable:

    • If the Optional parameter checkbox is selected, the parameter will be initialized with the default value in the function body.

      See Introduce Parameter example 1 above.

    • If the Optional parameter checkbox is cleared, the default parameter value will be passed through the existing function calls. All the function calls will change according to the new function signature and a parameter initialization will be added to the function body.

      See Introduce Parameter example 2 above.

    Initially, JetBrains Rider accepts the expression where the refactoring is invoked as the default value. In most cases you do not need to change it. If it is still necessary, specify another default value in the JSDoc comment in the format @param <parameter name> - <default value>.

  6. Accept one of the suggested parameter names by double-clicking it in the list or specify a custom name in the field with red canvas. Press Enter when ready.

    ws_js_extract_parameter_result.png

    Also note that in the ES6 code, the new default function parameter syntax function calculate_sum(i, i2 = 1) will be applied instead of i2 = i2 || 1;. Learn more about default function parameters from the https://developer.mozilla.org website.

Choosing the refactoring mode

You can extract a parameter right in the editor (in the in-place mode) as described above or use the Introduce Parameter dialog. These two approaches are rather similar, the difference is as follows:

  • Previewing the results of the refactoring.
    In the dialog, you can click Preview and examine the expected changes in the dedicated tab of the Find tool window. In the in-place mode, this functionality is not available.

  • Specifying the default parameter value.
    In the dialog, JetBrains Rider suggests the default parameter value in the Value field where you can accept the suggestion or specify another value. In the in-place mode, JetBrains Rider treats the expression where the refactoring is invoked as the default parameter value. To specify another value, you have to use a JSDoc comment block.

By default, JetBrains Rider runs the Introduce Parameter refactoring in the in-place mode. To use the Extract Parameter dialog, open the Settings/Preferences dialog Ctrl+Alt+S, go to Editor | Code Editing, and select the In modal dialogs option in the Refactorings area.

Introduce Variable

Use the Introduce Variable refactoring to replace an expression with a function-scoped variable (var) or a block-scoped variable (let). This refactoring makes your source code easier to read and maintain.

Suppose you have a function with a partially hardcoded expression in the return statement:

Parenizor.method('toString', function ()) { return '(' + this.getValue() + ')'; }
With the Introduce Variable refactoring, you can replace the '(' + this.getValue() + ')' expression with a variable, for example, string. The scope of the extracted variable depends on the statement used in its declaration var or let and the context in which the new variable is declared (inside or outside a function).

Example 1: Introducing a block-scoped variable with a let statement declaration
A variable string is extracted from the '(' + this.getValue() + ')' expression in the return statement. The new variable is declared with a let statement inside Parenizor.method('toString', function ()).

Parenizor.method('toString', function ()) { return '(' + this.getValue() + ')'; }
Parenizor.method('toString', function ()) { let string = '(' + this.getValue() + ')'; return string; }

Example 2: Introducing a variable and declaring it outside any function
A variable appName is extracted from the navigator.appName expression and declared with a var statement outside any function.

var browserName = "N/A"; if (navigator.appName.indexOf("Netscape") != -1) { browserName = "NS"; } else if (navigator.appName.indexOf("Microsoft") != -1) { browserName = "MSIE"; } else if (navigator.appName.indexOf("Opera") != -1) { browserName = "O"; }
var browserName = "N/A"; var appName = navigator.appName; if (appName.indexOf("Netscape") != -1) { browserName = "NS"; } else if (appName.indexOf("Microsoft") != -1) { browserName = "MSIE"; } else if (appName.indexOf("Opera") != -1) { browserName = "O"; }

Introduce a variable

  1. In the editor, select the expression to convert into a variable and press Ctrl+Alt+V or select Refactor | Introduce Variable from the context menu.

    Alternatively, do one of the following:

    • Press Ctrl+Alt+Shift+T and select Introduce Variable.

    • From the main menu, select Refactor | Extract | Variable.

  2. If several expressions are detected in the current cursor location, select the required one from the Expressions list.

    ws_js_refactoring_extract_variable_inplace_select_expression.png
  3. If more than one occurrence of the selected expression is found, select Replace this occurrence only or Replace all occurrences from the Multiple occurrences found list.

    ws_js_refactoring_extract_variable_inplace_multiple_occurrences.png

    Finally, the popup for configuring the refactoring appears.

  4. From the list, choose the statement to use in the declaration of the new variable:

    ws_js_refactoring_extract_variable_inplace_choose_scope_type.png
  5. Accept one of the suggested parameter names by double-clicking it in the list or specify a custom name in the field with red canvas. Press Enter when ready.

Choosing the refactoring mode

You can extract a variable right in the editor (in the in-place mode) as described above or use the Extract Variable dialog. By default, JetBrains Rider runs the Introduce Variable refactoring in the in-place mode. To use the Extract Variable dialog, open the Settings/Preferences dialog Ctrl+Alt+S, go to Editor | Code Editing, and select the In modal dialogs option in the Refactorings area.

Introduce Constant

Use the Introduce Constant refactoring to replace an expression with a constant. This refactoring makes your source code easier to read and maintain. It also helps you avoid using hardcoded constants without any explanations about their values or purposes.

Inside classes, you can introduce a readonly field or select a scope if several scopes are suitable. In other contexts, JetBrains Rider introduces only local constants.

Example 1: Selecting a scope for introduced constant

Suppose you have class AccountingDepartment with method printName() where "Department name :" is hardcoded.

class AccountingDepartment { name; printName() { console.log("Department name: " + this.name); } printMeeting() {... } generateReports() {... } }

JetBrains Rider can introduce a new constant as local and declare it inside the printName() function or as global or module and declare it outside the class.

class AccountingDepartment { name; printName() { const departmentName = "Department name: "; console.log(departmentName + this.name); } printMeeting() {... } generateReports() {... } }
Introducing a local constant and declaring it inside the enclosing method
const departmentName = "Department name: "; class AccountingDepartment { name; printName() { console.log(departmentName + this.name); } printMeeting() {... } generateReports() {... } }
Introducing a global constant and declaring it outside a class

Example 2: Introducing a constant without selecting a scope

If the Introduce Constant refactoring is invoked from outside any class, JetBrains Rider automatically introduces a local variable and declares it inside the current function or block.

let output = MyFunction(5, 8); document.writeln("The value is .".output);
let output = MyFunction(5, 8); const Value = "The value is "; document.writeln(Value.output);
Introduce Constant refactoring

Introduce a constant

  1. In the editor, select the expression to convert into a constant and press Ctrl+Alt+C or select Refactor | Introduce Constant from the context menu.

    Alternatively, do one of the following:

    • Press Ctrl+Alt+Shift+T and select Introduce Constant.

    • From the main menu, select Refactor | Extract | Constant.

    Invoke the Introduce Constant refactoring
  2. If several expressions are detected in the current cursor location, select the required one from the Expressions list.

    Introduce Constant: select the expression
  3. If refactoring is invoked from inside a class, introduce a readonly field or select the scope of the new constant, see Example 1.

    Introduce Constant: select scope

    For global constants, several occurrences of the selected expression can be found. Select Replace this occurrence only or Replace all occurrences from the Multiple occurrences found list.

    Introduce Constant: multiple occurrences for global constant
  4. Accept one of the suggested parameter names by double-clicking it in the list or specify a custom name in the field with red canvas. Press Enter when ready.

    Introduce Constant: select the name

Introduce Field

The Introduce Field refactoring declares a new field and initializes it with the selected expression. The original expression is replaced with the usage of the field.

In the examples below, the same field, _calcArea, is introduced. The examples illustrate three different ways to initialize the introduced field.

Example 1: The introduced field is initialized in the enclosing method

class Rectangle { constructor(height, width) { this.height = height; this.width = width; } get area() { return this.calcArea(); } calcArea() { return this.height * this.width; } }
class Rectangle { constructor(height, width) { this.height = height; this.width = width; } _calcArea; get area() { this._calcArea = this.calcArea(); return this._calcArea; } calcArea() { return this.height * this.width; } }

Example 2: The extracted field is initialized in its declaration

class Rectangle { constructor(height, width) { this.height = height; this.width = width; } get area() { return this.calcArea(); } calcArea() { return this.height * this.width; } }
class Rectangle { constructor(height, width) { this.height = height; this.width = width; } _calcArea = this.calcArea(); get area() { return this._calcArea; } calcArea() { return this.height * this.width; } }

Example 3: The extracted field is initialized in the constructor of the class

class Rectangle { constructor(height, width) { this.height = height; this.width = width; } get area() { return this.calcArea(); } calcArea() { return this.height * this.width; } }
class Rectangle { constructor(height, width) { this._calcArea = this.calcArea(); this.height = height; this.width = width; } _calcArea; get area() { return this._calcArea; } calcArea() { return this.height * this.width; } }

Introduce a field

  1. In the editor, select the expression to convert into a field and press Ctrl+Alt+F or choose Refactor | Introduce Field from the context menu.

    Alternatively, do one of the following:

    • Press Ctrl+Alt+Shift+T and select Introduce Field.

    • From the main menu, select Refactor | Extract | Field.

  2. In the popup, choose where the new field will be initialized:

    Extract field in-place
  3. Accept one of the suggested parameter names by double-clicking it in the list or specify a custom name in the field with red canvas. Press Enter when ready.

Choosing the refactoring mode

By default, JetBrains Rider runs the Introduce Field refactoring right in the editor (in the in-place mode), as described above.

To use the , open the Settings/Preferences dialog Ctrl+Alt+S, go to Editor | Code Editing, and select the In modal dialogs option in the Refactorings area.

Extract Method

The Extract Method refactoring lets you create a named method or function with the extracted code. When the Extract Method refactoring is invoked, JetBrains Rider detects the variables that are the input for the selected code fragment and the variable that is the output for it. The detected output variable is used as the return value for the extracted method or function.

In the examples below, a function is extracted from the c = a + b; expression.

Example 1: Extracting a globally scoped function from an expression inside another function
The c = a + b; expression, where the refactoring is invoked, is inside the MyFunction() function. The global destination scope is chosen.

Example 1.1: A function declaration is generated

function MyFunction(a, b) { c = a + b; return (c * c); } result = MyFunction(4, 6); document.write(result);
function extracted(a, b) { c = a + b; } function MyFunction(a, b) { extracted(a, b); return (c * c); } result = MyFunction(4, 6); document.write(result);

Example 1.2: The extracted function is declared inside an expression

function MyFunction(a, b) { c = a + b; return (c * c); } result = MyFunction(4, 6); document.write(result);
let extracted = function (a, b) { c = a + b; }; function MyFunction(a, b) { extracted(a, b); return (c * c); } result = MyFunction(4, 6); document.write(result);

Example 2: Extracting a globally scoped function from an expression outside any function
The c = a + b; expression, where the refactoring is invoked, is outside any function. Therefore no choice of the destination scope is available.

Example 2.1: A function declaration is generated

c = a + b;
function extracted() { c = a + b; } extracted();

Example 2.2: The extracted function is declared inside an expression

c = a + b;
let extracted = function () { c = a + b; }; extracted();

Example 3: Extracting a function with a definition inside the enclosing function
The c = a + b; expression, where the refactoring is invoked, is inside the MyFunction() function. The function MyFunction destination scope is chosen.

function MyFunction(a, b) { c = a + b; return (c * c); } result = MyFunction(4, 6); document.write(result);
function MyFunction(a, b) { function extracted() { c = a + b; } extracted(); return (c * c); } result = MyFunction(4, 6); document.write(result);

Extract a function

  1. In the editor, select a code fragment to convert into a function and press Ctrl+Alt+M or choose Refactor | Extract Method from the context menu.

    Alternatively, do one of the following:

    • Press Ctrl+Alt+Shift+T and select Extract Method.

    • From the main menu, select Refactor | Extract | Method.

  2. If the selected expression is inside a function, choose the destination scope from the list:

    • If you choose global, the extracted function will be declared outside any function. See Example 1 above.

    • To define the extracted function inside the current enclosing function, choose function <current enclosing function name>. See Example 3 above.

    ws_refactoring_js_extract_method_extract.png
  3. To open the Extract Function dialog with more options, press Ctrl+Alt+M once again. In this dialog, you can choose whether the extracted function will be declared through a generated function declaration or inside an expression. See Examples above.

    ws_js_extract_method_es6.png

Open the Extract Function dialog by default

  • open the Settings/Preferences dialog Ctrl+Alt+S, go to Editor | Code Editing, and select the In modal dialogs option in the Refactorings area.

Extract Superclass

The Extract Superclass refactoring creates a new abstract class based on the members of the current class. The created class is extended automatically.

Suppose you have a class AccountingDepartment and you expect that the printName() method from it will be re-used.

class AccountingDepartment { name; printName() { console.log("Department name: " + this.name); } printMeeting() { console.log("The Accounting Department meets each Monday at 10am."); } generateReports() { console.log("Generating accounting reports..."); } }
You can extract a superclass Department and include the printName and the Name field in it.
class Department { name; printName() { console.log("Department name: " + this.name); } } class AccountingDepartment extends Department { printMeeting() { console.log("The Accounting Department meets each Monday at 10am."); } generateReports() { console.log("Generating accounting reports..."); } }

Extract a superclass

  1. Position the caret anywhere inside the class from which you wfrom the context menuperclass.

  2. Select Refactor | Extract | Superclass from the main menu or Refactor | Extract Superclass from the context menu. The Extract Superclass dialog opens.

  3. Specify the name of the new superclass and select the checkboxes next to the class members you want to include in it. Optionally, mark the members that you want to make abstract.

  4. In the Destination file field, specify the location of the file where the new class will be. By default, the field shows the path to the current file where the refactoring was invoked.

  5. Choose Extract Superclass. JetBrains Rider creates a new class and marks the source class with extends.
    To create a superclass and replace the references to the source class with references to the superclass in parameters of methods, choose Extract superclass and use it where possible. JetBrains Rider shows the proposed changes in the Refactoring Preview pane of the Find tool window.

Introduce object or array destructuring

Destructuring lets you easily unpack values from arrays and objects into variables. This functionality has a very concise syntax that is often used when you need to pass data in your application. See Exploring ES6 for details.

In JetBrains Rider, you can invoke destructuring using an intention action (Alt+Enter. With the Replace with object/array destructuring action, the original assignment is removed. To keep the assignment, use Introduce object/array destructuring.

Replace the original assignment

  1. Position the caret at a value from an array or an object and press Alt+Enter.

  2. From the list, select Replace with object destructuring or Replace with array destructuring.

    Destructuring with intention action: Replace with array destructuring

    If some of the values from an array or an object are not used, these elements will be skipped:

    Destructuring with intention action: items skipped

Keep the original assignment

  1. Position the caret at a value from an array or an object and press Alt+Enter.

  2. From the list, select Introduce object destructuring or Introduce array destructuring.

    Destructuring with intention action: Introduce array destructuring

    This intention action can be very handy when working with React class components:

    Destructuring with intention action: Introduce object destructuring in a React class

Generate destructuring parameters for a function

  1. Position the caret at the parameters of a function and press Alt+Enter.

  2. From the list, select Convert parameters to object.

    Destructuring with intention action: Convert parameters to object

Extract Vue Component

The Extract Vue Component refactoring lets you extract new Vue.js components from existing ones without any copying and pasting. Note that this refactoring works only in-place, so make sure the In the editor refactoring option is selected on the the Editor | Code Editing page of the IDE settings Ctrl+Alt+S.

Extract a Vue.js component

  1. Select the code fragment to extract and choose Refactor | Extract Vue Component from its context menu or Refactor | Extract | Extract Vue Component from the main menu.

    Alternatively, use the dedicated intention action: select the template fragment to extract, press Alt+Enter, and then choose Extract Vue Component from the list.

  2. Type the name of the new component. If this name is already used or invalid, JetBrains Rider shows a warning. Otherwise a new single-file component is created and imported into the parent component.

Inline refactorings

Inline refactorings are opposite to Extract refactorings.

Example 1: Inline Variable
The Inline Variable refactoring replaces a redundant usage of a variable or a constant with its initializer. This type of refactoring is available only for block-scoped and function-scoped variables.

Parenizor.method('toString', function () { var string = '(' + this.getValue() + ')'; return string; }
Parenizor.method('toString', function () { return '(' + this.getValue() + ')'; }

Example 2: Inline Function
The Inline Method/ Inline Function refactoring results in placing the body of a method or a function into the body of its caller(s); the method/function itself is deleted.
In the example below, the body of Sum() is placed in the body of Multiplication() and Division().

function Sum(a, b) { return a + b; } function Multiplication(a, b) { c = Sum(a, b); d = c * c; return d; } function Division(a, b) { c = Sum(a, b); d = Multiplication(a, b); result = c / d; return result; }
function Multiplication(a, b) { c = a + b; d = c * c; return d; } function Division(a, b) { c = a + b; d = Multiplication(a, b); result = c / d; return result; }

Run an Inline refactoring

  • In the editor, position the caret at the symbol to be inlined and press Ctrl+Alt+N or choose Refactor | Inline from the context menu or from the main menu.

Change Signature refactoring

Use the Change Signature refactoring to change the function name, to add, remove, reorder, and rename parameters, and to propagate new parameters through the hierarchy of calls.

You can also add a parameter using the Introduce Parameter refactoring.

The examples below show different ways to run the Change Signature refactoring. In all the cases, the function result() is renamed to generate_result() and a new parameter input is added to this function. The examples show how the function call, the calling function show_result(), and other code fragments may be affected depending on the refactoring settings.

Example 1: Renaming a function, adding a parameter, and passing its value through the function call
In this example, the function result() is renamed to generate_result(), a parameter input is added, and the value 100 is passed as a parameter in the function call.

function result() { } function show_result() { alert('Result: ' + result()); }
function generate_result(input) { } function show_result() { alert('Result: ' + generate_result(100)); }

Example 2: Renaming a function and adding a default parameter
In this example, the function result() is renamed to generate_result(). A default parameter input is added with the value 100. The new parameter is initialized in the generate_result() in the format function generate_result(input = 100) {} for ES6 language level or input = input || 100 for ES5.

function result() { } function show_result() { alert('Result: ' + result()); }
function generate_result(input = 100) { } function show_result() { alert('Result: ' + generate_result()); }

Example 3: Renaming a function, adding a default parameter, and propagating the parameter to the function call
In this example, the function result() is renamed to generate_result(). A default parameter input is added with the value 100. The new parameter is initialized in the generate_result() in the format function generate_result(input = 100) {} for ES6 language level or input = input || 100 for ES5. The input parameter is propagated through the calling function show_result() so the function call is changed accordingly.

function result() { } function show_result() { alert('Result: ' + result()); }
function generate_result(input = 100) { } function show_result() { alert('Result: ' + generate_result()); }

Invoke Change Signature

  • In the editor, position the caret within the name of the function to refactor and press Ctrl+F6 or choose Refactor | Change Signature from the context menu or from the main menu. The Change Signature dialog opens.

Rename a function

  • In the Change Signature dialog Ctrl+F6, edit the Name field.

Manage the function parameters

  • In the Change Signature dialog Ctrl+F6, use the table of parameters and the buttons to the right of it:

    • To add a new parameter, click the Add button   Alt+Insert and specify the name of the new parameter and its default value or the value to be passed through function calls.

      See Example 1 and Example 2 above.

    • To remove a parameter, click any of the cells in the corresponding row and click the Delete button   Alt+Delete.

    • To reorder the parameters, use the Previous Occurrence button   Alt+Up and the Next Occurrence button   Alt+Down.

    • To rename a parameter, edit the Name field.

    • If necessary, propagate the new parameter to the functions that call the current function.

Propagate a parameter along the hierarchy of calls

  1. In the Change Signature dialog Ctrl+F6, select the parameter and click the Propagate Parameter button. The Select Methods to Propagate New Parameters dialog opens. The left-hand pane shows the hierarchy of function calls. When you select a function, the right-hand pane shows its code and the code of the function it calls in the Caller Method and Callee Method fields respectively.

    See Example 3 above.

  2. In the left-hand pane, select the checkboxes next to the functions where you want to propagate the parameter and click OK.

Preview the changes and complete the refactoring

  1. In the Change Signature dialog, click Preview.

  2. In the Refactoring Preview tab of the Find tool window, view the expected changes, make the necessary adjustments, and click Do Refactor when ready.

Last modified: 26 May 2021