package jetbrains.mps.debug.api.programState; /*Generated by MPS */ import java.util.List; public interface IStackFrame { ILocation getLocation(); IThread getThread(); IValue getValue(IWatchable watchable); List<IWatchable> getVisibleWatchables(); }