fix: bump version to 0.12.0-rc1 (real) (#710)

* test: update snapshot

* fix: actually bump to 0.12.0-rc1
This commit is contained in:
Myriad-Dreamin 2024-10-19 23:03:10 +08:00 committed by GitHub
parent 66fff06dfe
commit ff535a1924
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 40 additions and 28 deletions

File diff suppressed because one or more lines are too long

View file

@ -3,8 +3,15 @@ source: crates/tinymist-query/src/analysis.rs
expression: result
input_file: crates/tinymist-query/src/fixtures/type_check/annotation_var.typ
---
"f" = Any
"mapper" = (Type(function) | (Any, Any) => Any)
"x" = Any
"x" = Any
"y" = Any
---
56..62 -> @mapper
66..67 -> @x
69..70 -> @f
75..76 -> @x
75..83 -> Any
81..82 -> @f

View file

@ -4,12 +4,17 @@ expression: result
input_file: crates/tinymist-query/src/fixtures/type_check/tuple_map.typ
---
"a" = (1, )
"b" = (Any, )
"f" = Undef
"b" = (Type(string), )
"f" = (( ⪯ (Type(bytes) | Type(decimal) | Type(float) | Type(integer) | Type(label) | Type(string) | Type(type) | Type(version)))) => Type(string)
"x" = Any
---
5..6 -> @a
20..21 -> @f
24..25 -> @x
29..32 -> Type(string)
29..35 -> Type(string)
33..34 -> @x
42..43 -> @b
46..47 -> @a
46..54 -> (Any, )
46..54 -> (Type(string), )
52..53 -> @f