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
reports diagnostic : brs1001 - Cannot find function with name 'childRail' when this file is included in scope 'source'
transpilation still succeeds, as this screenshot shows.
I've had a look at the code; but not sure how best to deal with this to workaround it.. not sure if it should even be in the functionExpressions references, as it's a callfun expression, or if it should just get filtered out of the response from findFunctionCalls
The text was updated successfully, but these errors were encountered:
Just a clarification: functionExpressions is a list of functions, not function calls, so the statement "not sure if it should even be in the functionExpressions references" doesn't make much sense.
However, you are correct, CallfuncExpressions should be excluded from the parser's callExpressions list (the results of findFunctionCalls). Good find.
this .bs code:
reports diagnostic : brs1001 -
Cannot find function with name 'childRail' when this file is included in scope 'source'
transpilation still succeeds, as this screenshot shows.
I've had a look at the code; but not sure how best to deal with this to workaround it.. not sure if it should even be in the
functionExpressions
references, as it's a callfun expression, or if it should just get filtered out of the response fromfindFunctionCalls
The text was updated successfully, but these errors were encountered: