org.eclipse.epsilon.flock.debug.FlockDebugger Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2012 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/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.flock.debug;
import org.eclipse.epsilon.common.module.ModuleElement;
import org.eclipse.epsilon.eol.debug.EolDebugger;
import org.eclipse.epsilon.flock.model.domain.common.ClassifierTypedConstruct;
public class FlockDebugger extends EolDebugger {
@Override
protected boolean isStructuralBlock(ModuleElement ast) {
return super.isStructuralBlock(ast) || ast instanceof ClassifierTypedConstruct;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy