From bc50020c6179ff2f80e0aa741ab2445d1718c45f Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Sun, 19 Jul 2015 20:43:08 +0200 Subject: [PATCH] Readded column information. --- .../com/ibm/wala/cast/js/html/jericho/JerichoTag.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/html/jericho/JerichoTag.java b/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/html/jericho/JerichoTag.java index c4f2037ee..420feddab 100644 --- a/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/html/jericho/JerichoTag.java +++ b/com.ibm.wala.cast.js/source/com/ibm/wala/cast/js/html/jericho/JerichoTag.java @@ -57,14 +57,14 @@ public class JerichoTag implements ITag { @Override public int getFirstCol() { - return -1; - // return e.getSource().getRowColumnVector(e.getBegin()).getColumn(); +// return -1; + return e.getSource().getRowColumnVector(e.getBegin()).getColumn(); } @Override public int getLastCol() { - return -1; - //return e.getSource().getRowColumnVector(e.getEnd()).getColumn(); +// return -1; + return e.getSource().getRowColumnVector(e.getEnd()).getColumn(); } @Override