Skip to content

Commit

Permalink
Fix SimpleGroovyParser line/column number bug
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-wyluda committed Aug 26, 2013
1 parent 63106c4 commit 9b384c0
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -43,10 +43,10 @@ public class SimpleGroovyParser
private static class PreInvocationWithClosure
{
public String methodName;
public int lineNumber;
public int columnNumber;
public int lastLineNumber;
public int lastColumnNumber;
public int lineNumber = 1;
public int columnNumber = 1;
public int lastLineNumber = 1;
public int lastColumnNumber = 1;
public List<InvocationWithClosure> invocationWithClosureList = Lists.newArrayList();
public List<InvocationWithMap> invocationWithMapList = Lists.newArrayList();
public List<InvocationWithString> invocationWithStringList = Lists.newArrayList();
Expand Down

0 comments on commit 9b384c0

Please sign in to comment.