Write and edit source codeCode refactoringInlineInline dialogsInline dialogs Last modified: 12 December 2022Refactor | Inline<context menu of a selection>| Refactor | InlineCtrl+Alt+NInline Variable dialogThe Inline Variable refactoring allows you to replace a redundant variable with its value. To access the Inline Variable dialog box through a menu item or the keyboard shortcut, position the cursor at the variable to be inlined.The inline refactoring turns the following two variables:name := person.Name data := getData (name)intodata := getData (person.Name)Also, all occurrences of the name variable is replaced with person.Name.Thanks for your feedback!Was this page helpful?YesNo