Home | History | Annotate | Download | only in monkeyrunner

Lines Matching refs:variable

22   private final String variable;
25 private ScriptRunner(Object scope, String variable) {
27 this.variable = variable;
31 public static ScriptRunner newInstance(Object scope, String variable) {
32 return new ScriptRunner(scope, variable);
68 initInterpreter(python, scope, variable);
91 public static void initInterpreter(PythonInterpreter python, Object scope, String variable)
93 // Store the current test case as the this variable
94 python.set(variable, scope);