MStatementReplaceable

- Added new API methods
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-10 21:21:06 +02:00
parent 5a56618a76
commit 261d8614c7
1 changed files with 4 additions and 0 deletions

View File

@ -75,6 +75,10 @@ public interface MStatementReplaceable
* Returns: `true` if the replacement succeeded, `false` otherwise
*/
public bool replace(Statement thiz, Statement that);
public bool insertBefore(Statement thiz, Statement that);
public bool insertAfter(Statement thiz, Statement that);
public bool remove(Statement thiz);
}
/**