InsertStatement =============== Inserts a statement in a method/constructor. .. contents:: Availability ------------ .. raw:: html This action is available when using following search targets: - :doc:`/ref/targets/method` - :doc:`/ref/targets/constructor` Configuration options --------------------- code ~~~~ The code to insert. .. code-block:: yaml insertStatement: code: "this.veryImportantFirst();" .. code-block:: diff void MyType() { super(false); + this.veryImportantFirst(); this.othermethod(); } position ~~~~~~~~ Decides where to insert the statement. Currently the only options are "top" and "bottom".