We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7370ba commit b233749Copy full SHA for b233749
src/ast/nodes/BinaryExpression.ts
@@ -92,7 +92,7 @@ export default class BinaryExpression extends NodeBase implements DeoptimizableE
92
renderedLiteralValue: string | typeof UnknownValue | typeof UNASSIGNED = UNASSIGNED;
93
94
deoptimizeCache(): void {
95
- this.renderedLiteralValue = UNASSIGNED;
+ this.renderedLiteralValue = UnknownValue;
96
}
97
98
getLiteralValueAtPath(
0 commit comments