-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: AsyncRewriter
-
None
-
Environment:OS:
node.js / npm versions:
Additional info:
-
Developer Tools
Problem Statement/Rationale
What is going wrong? What action would you like the Engineering team to take?
const x = 1;
x?.toString()
Fails with an error, while it should work.
Please be sure to attach relevant logs with any sensitive data redacted.
How to retrieve logs for: Compass; Shell
Steps to Reproduce
How could an engineer replicate the issue you’re reporting?
Run the following script in a running mongosh:
const x = 1;
x?.toString()
Expected Results
What do you expect to happen?
Actual Results
What do you observe is happening?
Additional Notes
Any additional information that may be useful to include.
According to our investigation, it's likely an issue in the async rewriter, that doesn't handle the optional chaining operator:
We would need to add support for OptionalMemberExpression and OptionalCallExpression