提交 ab779287 编写于 作者: J jjg

8011677: EndPosTables should avoid hidden references to Parser

Reviewed-by: mcimadamore
上级 5c3c98aa
...@@ -171,8 +171,8 @@ public class JavacParser implements Parser { ...@@ -171,8 +171,8 @@ public class JavacParser implements Parser {
protected AbstractEndPosTable newEndPosTable(boolean keepEndPositions) { protected AbstractEndPosTable newEndPosTable(boolean keepEndPositions) {
return keepEndPositions return keepEndPositions
? new SimpleEndPosTable() ? new SimpleEndPosTable(this)
: new EmptyEndPosTable(); : new EmptyEndPosTable(this);
} }
protected DocCommentTable newDocCommentTable(boolean keepDocComments, ParserFactory fac) { protected DocCommentTable newDocCommentTable(boolean keepDocComments, ParserFactory fac) {
...@@ -3088,6 +3088,7 @@ public class JavacParser implements Parser { ...@@ -3088,6 +3088,7 @@ public class JavacParser implements Parser {
toplevel.docComments = docComments; toplevel.docComments = docComments;
if (keepLineMap) if (keepLineMap)
toplevel.lineMap = S.getLineMap(); toplevel.lineMap = S.getLineMap();
this.endPosTable.setParser(null); // remove reference to parser
toplevel.endPositions = this.endPosTable; toplevel.endPositions = this.endPosTable;
return toplevel; return toplevel;
} }
...@@ -4003,11 +4004,12 @@ public class JavacParser implements Parser { ...@@ -4003,11 +4004,12 @@ public class JavacParser implements Parser {
/* /*
* a functional source tree and end position mappings * a functional source tree and end position mappings
*/ */
protected class SimpleEndPosTable extends AbstractEndPosTable { protected static class SimpleEndPosTable extends AbstractEndPosTable {
private final Map<JCTree, Integer> endPosMap; private final Map<JCTree, Integer> endPosMap;
SimpleEndPosTable() { SimpleEndPosTable(JavacParser parser) {
super(parser);
endPosMap = new HashMap<JCTree, Integer>(); endPosMap = new HashMap<JCTree, Integer>();
} }
...@@ -4016,12 +4018,12 @@ public class JavacParser implements Parser { ...@@ -4016,12 +4018,12 @@ public class JavacParser implements Parser {
} }
protected <T extends JCTree> T to(T t) { protected <T extends JCTree> T to(T t) {
storeEnd(t, token.endPos); storeEnd(t, parser.token.endPos);
return t; return t;
} }
protected <T extends JCTree> T toP(T t) { protected <T extends JCTree> T toP(T t) {
storeEnd(t, S.prevToken().endPos); storeEnd(t, parser.S.prevToken().endPos);
return t; return t;
} }
...@@ -4043,7 +4045,11 @@ public class JavacParser implements Parser { ...@@ -4043,7 +4045,11 @@ public class JavacParser implements Parser {
/* /*
* a default skeletal implementation without any mapping overhead. * a default skeletal implementation without any mapping overhead.
*/ */
protected class EmptyEndPosTable extends AbstractEndPosTable { protected static class EmptyEndPosTable extends AbstractEndPosTable {
EmptyEndPosTable(JavacParser parser) {
super(parser);
}
protected void storeEnd(JCTree tree, int endpos) { /* empty */ } protected void storeEnd(JCTree tree, int endpos) { /* empty */ }
...@@ -4065,13 +4071,21 @@ public class JavacParser implements Parser { ...@@ -4065,13 +4071,21 @@ public class JavacParser implements Parser {
} }
protected abstract class AbstractEndPosTable implements EndPosTable { protected static abstract class AbstractEndPosTable implements EndPosTable {
/**
* The current parser.
*/
protected JavacParser parser;
/** /**
* Store the last error position. * Store the last error position.
*/ */
protected int errorEndPos; protected int errorEndPos;
public AbstractEndPosTable(JavacParser parser) {
this.parser = parser;
}
/** /**
* Store ending position for a tree, the value of which is the greater * Store ending position for a tree, the value of which is the greater
* of last error position and the given ending position. * of last error position and the given ending position.
...@@ -4106,5 +4120,9 @@ public class JavacParser implements Parser { ...@@ -4106,5 +4120,9 @@ public class JavacParser implements Parser {
errorEndPos = errPos; errorEndPos = errPos;
} }
} }
protected void setParser(JavacParser parser) {
this.parser = parser;
}
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册