1 28 package org.jruby.lexer.yacc; 29 30 39 public interface ISourcePosition { 40 45 public String getFile(); 46 47 51 public int getStartLine(); 52 53 58 public int getEndLine(); 59 60 67 public void adjustStartOffset(int relativeValue); 68 69 75 public int getStartOffset(); 76 77 83 public int getEndOffset(); 84 85 91 public ISourcePosition union(ISourcePosition position); 92 } 93 | Popular Tags |