1 28 29 package org.jruby.ast.visitor.rewriter.utils; 30 31 import org.jruby.ast.Node; 32 import org.jruby.ast.visitor.rewriter.ReWriteVisitor; 33 34 public class IgnoreCommentsReWriteVisitor extends ReWriteVisitor { 35 36 public IgnoreCommentsReWriteVisitor(ReWriterContext config) { 37 super(config); 38 } 39 40 protected boolean printCommentsAfter(Node iVisited) { 41 return false; 42 } 43 } | Popular Tags |