ZYieldNode.java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */

  5. package org.jruby.ast;

  6. import org.jruby.lexer.yacc.ISourcePosition;

  7. /**
  8.  *
  9.  * @author enebo
  10.  */
  11. public class ZYieldNode extends YieldNode {
  12.     public ZYieldNode(ISourcePosition position) {
  13.         super(position, null, true);
  14.     }
  15. }