Deprecate childrenAccept in all modules

This commit is contained in:
Clément Fournier
2019-12-16 23:58:18 +01:00
parent 98df6bda1c
commit 1aabc53fa2
22 changed files with 296 additions and 23 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);
/**