You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the tree.parser attribute does not set to its correct reference when using USE_CPP_BACKEND to create a parse tree.
It returns None. However, this attribute is set to a valid reference of ANTLR parser when using Python backend
It is required to initialize the TokenStreamRewriter class with parse tree tokens in the following code (line 4 raise an exception): 'NoneType' object has no attribute 'getInputStream'
It seems that the tree.parser attribute does not set to its correct reference when using USE_CPP_BACKEND to create a parse tree. It returns None. However, this attribute is set to a valid reference of ANTLR parser when using Python backend It is required to initialize the TokenStreamRewriter class with parse tree tokens in the following code (line 4 raise an exception): 'NoneType' object has no attribute 'getInputStream'
It seems that the
tree.parser
attribute does not set to its correct reference when usingUSE_CPP_BACKEND
to create a parse tree.It returns
None
. However, this attribute is set to a valid reference of ANTLR parser when using Python backendIt is required to initialize the
TokenStreamRewriter
class with parse tree tokens in the following code (line 4 raise an exception):'NoneType' object has no attribute 'getInputStream'
The text was updated successfully, but these errors were encountered: