Merge branch 'pr-2172'

[core] Deprecate jjtree methods from the Node interface
This commit is contained in:
Andreas Dangel
2020-01-17 08:18:50 +01:00
31 changed files with 903 additions and 92 deletions

View File

@ -17,7 +17,11 @@ public interface EcmascriptNode<T extends AstNode> extends Node {
/**
* Accept the visitor. *
*
* @deprecated This method is not useful, the logic for combining
* children values should be present on the visitor, not the node
*/
@Deprecated
Object childrenAccept(EcmascriptParserVisitor visitor, Object data);
/**