blob: 0bab31feac5a57ac412388b58bc84451e4de2e2d [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2019 The University of York.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.executors.ecl;
import org.eclipse.epsilon.ecl.IEclModule;
import org.eclipse.epsilon.ecl.trace.MatchTrace;
import org.eclipse.epsilon.executors.IEpsilonLanguageExecutor;
/**
*
*
* @author Sina Madani
* @since 1.6
*/
public interface IEclExecutor extends IEpsilonLanguageExecutor {
@Override
IEclModule getModule();
@Override
MatchTrace getResult();
default MatchTrace getMatchTrace() {
return getResult();
}
}