Home | History | Annotate | Download | only in interpreter

Lines Matching defs:interpreter

17 package com.googlecode.android_scripting.interpreter;
30 * This is a skeletal implementation of an interpreter process.
36 private final Interpreter mInterpreter;
43 * the absolute path to a script that should be launched with the interpreter
47 public InterpreterProcess(Interpreter interpreter, AndroidProxy proxy) {
49 mInterpreter = interpreter;
51 setBinary(interpreter.getBinary());
52 setName(interpreter.getNiceName());
53 setCommand(interpreter.getInteractiveCommand());
54 addAllArguments(interpreter.getArguments());
61 putAllEnvironmentVariables(interpreter.getEnvironmentVariables());
68 public Interpreter getInterpreter() {