Exemplo n.º 1
0
 private static LineOffsets getLineOffsets(WPos p) {
   LineOffsets lineOffsets;
   if (p.getLineOffsets() instanceof LineOffsets) {
     lineOffsets = (LineOffsets) p.getLineOffsets();
   } else {
     lineOffsets = new LineOffsets();
   }
   return lineOffsets;
 }
Exemplo n.º 2
0
 /**
  * makes a best effort to get a precise position for this element
  *
  * @param e
  * @return
  */
 public static WPos getPos(AstElement e) {
   if (e instanceof AstElementWithSource) {
     AstElementWithSource ws = (AstElementWithSource) e;
     return ws.getSource();
   }
   if (e.size() > 0) { // try to find the position by examining the childs
     int min = Integer.MAX_VALUE;
     int max = Integer.MIN_VALUE;
     for (int i = 0; i < e.size(); i++) {
       AstElement child = e.get(i);
       WPos childSource = child.attrSource();
       min = Math.min(min, childSource.getLeftPos());
       max = Math.max(max, childSource.getRightPos());
     }
     return new WPos(
         e.get(0).attrSource().getFile(), e.get(0).attrSource().getLineOffsets(), min, max);
   }
   // if no childs exist, search a parent element with a explicit position
   AstElement parent = e.getParent();
   while (parent != null) {
     if (parent instanceof AstElementWithSource) {
       WPos parentSource = ((AstElementWithSource) parent).getSource();
       // use parent position but with size -1, so we do not go into this
       return new WPos(
           parentSource.getFile(),
           parentSource.getLineOffsets(),
           parentSource.getLeftPos(),
           parentSource.getLeftPos() - 1);
     }
     parent = parent.getParent();
   }
   return new WPos("<source of " + e + " not found>", new LineOffsets(), 0, 0);
 }