* @param <T> script kind
* @param script target script
* @param handler target handler
*/
protected <T extends ExecutionScript> void execute(T script, ExecutionScriptHandler<T> handler) {
ExecutionContext context = new ExecutionContext("b", "f", "e", ExecutionPhase.MAIN, map());
execute(context, script, handler);
}