Package wyvern.targets.Common.wyvernIL.interpreter.visitors

Examples of wyvern.targets.Common.wyvernIL.interpreter.visitors.BytecodeDefVisitor


  public BytecodeValue getCompleteClass() { 
    BytecodeContext context = new BytecodeContextImpl(coreContext);
    BytecodeFunction init = (BytecodeFunction) context.getValue("$init");
    init.run(new ArrayList<BytecodeValue>(), context);
    for(Definition def : defs) {
      context = def.accept(new BytecodeDefVisitor(context));
    }
    return new BytecodeClass(context);
  }
View Full Code Here

TOP

Related Classes of wyvern.targets.Common.wyvernIL.interpreter.visitors.BytecodeDefVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.