private void addCommands(ScriptPage page) {
if (debugActions != null) {
impl.addCommands(CommandFactory.newCommand("test", new TestScriptExecutor(page)));
impl.addCommands(
new ActionCommand("resume", debugActions.getResumeAction()),
new ActionCommand("stop", debugActions.getStopAction()),
new ActionCommand("step", debugActions.getStepAction())
);
}
}