mirror of https://github.com/astral-sh/ruff
[ty] Avoid inferring types for invalid binary expressions in string annotations (#21911)
## Summary Closes https://github.com/astral-sh/ty/issues/1847. --------- Co-authored-by: David Peter <mail@david-peter.de>
This commit is contained in:
parent
24ed28e314
commit
5c320990f7
|
|
@ -156,6 +156,9 @@ a: "1 or 2"
|
||||||
b: "(x := 1)"
|
b: "(x := 1)"
|
||||||
# error: [invalid-type-form]
|
# error: [invalid-type-form]
|
||||||
c: "1 + 2"
|
c: "1 + 2"
|
||||||
|
# Regression test for https://github.com/astral-sh/ty/issues/1847
|
||||||
|
# error: [invalid-type-form]
|
||||||
|
c2: "a*(i for i in [])"
|
||||||
d: "lambda x: x"
|
d: "lambda x: x"
|
||||||
e: "x if True else y"
|
e: "x if True else y"
|
||||||
f: "{'a': 1, 'b': 2}"
|
f: "{'a': 1, 'b': 2}"
|
||||||
|
|
|
||||||
|
|
@ -155,7 +155,6 @@ impl<'db> TypeInferenceBuilder<'db, '_> {
|
||||||
}
|
}
|
||||||
// anything else is an invalid annotation:
|
// anything else is an invalid annotation:
|
||||||
op => {
|
op => {
|
||||||
self.infer_binary_expression(binary, TypeContext::default());
|
|
||||||
self.report_invalid_type_expression(
|
self.report_invalid_type_expression(
|
||||||
expression,
|
expression,
|
||||||
format_args!(
|
format_args!(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue