public CompilerListMaker(LinkedList<Token> receivedTokens)
 {
     this.receivedTokens = receivedTokens;
     this.nodeList = new NodeLinkedList();
     this.cf = CompilerFactory.getInstance();
     this.compile();
     vm = new VirtualMachine();
     vm.run(nodeList);
 }
 public NextNodeVisitor(VirtualMachine vm)
     : base(vm)
 {
 }
 public NodeVisitor(VirtualMachine vm)
 {
     this.vm = vm;
 }