1 /* 2 * IterNodeCompiler.java 3 * 4 * Created on January 3, 2007, 11:49 PM 5 * 6 * To change this template, choose Tools | Template Manager 7 * and open the template in the editor. 8 */ 9 10 package org.jruby.compiler; 11 12 import org.jruby.ast.Node; 13 14 /** 15 * 16 * @author headius 17 */ 18 public class IterNodeCompiler implements NodeCompiler{ 19 20 /** Creates a new instance of IterNodeCompiler */ 21 public IterNodeCompiler() { 22 } 23 24 public void compile(Node node, Compiler context) { 25 // FIXME: This should get caller from different location than iter since we revered 26 // relationship 27 // FIXME: handle other iternode cases 28 } 29 30 } 31