Home | History | Annotate | Download | only in binder

Lines Matching defs:env

24 import com.google.turbine.binder.env.CompoundEnv;
25 import com.google.turbine.binder.env.Env;
26 import com.google.turbine.binder.env.SimpleEnv;
53 // TODO(cushon): this is going to require an env eventually,
55 Env<ClassSymbol, BytecodeBoundClass> cp = bindClasspath(tli, classpath);
56 Env<ClassSymbol, BytecodeBoundClass> bcp = bindClasspath(tli, bootclasspath);
60 private static Env<ClassSymbol, BytecodeBoundClass> bindClasspath(
64 Env<ClassSymbol, BytecodeBoundClass> benv =
65 new Env<ClassSymbol, BytecodeBoundClass>() {
91 Map<ClassSymbol, BytecodeBoundClass> env,
92 Env<ClassSymbol, BytecodeBoundClass> benv,
116 if (!env.containsKey(sym)) {
117 env.put(sym, new BytecodeBoundClass(sym, toByteArrayOrDie(ze), benv, path.toString()));