org.snapscript.studio.agent.debug.ScopeContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.studio.agent.debug;
public class ScopeContext {
private final ScopeVariableTree tree;
private final String source;
public ScopeContext(ScopeVariableTree tree, String source) {
this.source = source;
this.tree = tree;
}
public ScopeVariableTree getTree(){
return tree;
}
public String getSource(){
return source;
}
}