Skip to content

Commit 53f7f82

Browse files
committed
Merge branch 'main' into redsun82/kotlin-2.2.0-support
2 parents 06b45c9 + 55efb11 commit 53f7f82

File tree

103 files changed

+26947
-395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+26947
-395
lines changed

go/extractor/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ toolchain go1.24.0
1010
// bazel mod tidy
1111
require (
1212
golang.org/x/mod v0.24.0
13-
golang.org/x/tools v0.32.0
13+
golang.org/x/tools v0.33.0
1414
)
1515

16-
require golang.org/x/sync v0.13.0 // indirect
16+
require golang.org/x/sync v0.14.0 // indirect

go/extractor/go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
22
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
33
golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU=
44
golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
5-
golang.org/x/sync v0.13.0 h1:AauUjRAJ9OSnvULf/ARrrVywoJDy0YS2AwQ98I37610=
6-
golang.org/x/sync v0.13.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
7-
golang.org/x/tools v0.32.0 h1:Q7N1vhpkQv7ybVzLFtTjvQya2ewbwNDZzUgfXGqtMWU=
8-
golang.org/x/tools v0.32.0/go.mod h1:ZxrU41P/wAbZD8EDa6dDCa6XfpkhJ7HFMjHJXfBDu8s=
5+
golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ=
6+
golang.org/x/sync v0.14.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
7+
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
8+
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=

rust/ast-generator/src/main.rs

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ fn class_name(type_name: &str) -> String {
2323
"Literal" => "LiteralExpr".to_owned(),
2424
"ArrayExpr" => "ArrayExprInternal".to_owned(),
2525
"AsmOptions" => "AsmOptionsList".to_owned(),
26+
"MacroStmts" => "MacroBlockExpr".to_owned(),
2627
_ if type_name.starts_with("Record") => type_name.replacen("Record", "Struct", 1),
2728
_ if type_name.ends_with("Type") => format!("{}Repr", type_name),
2829
_ => type_name.to_owned(),
@@ -36,6 +37,7 @@ fn property_name(type_name: &str, field_name: &str) -> String {
3637
("MatchExpr", "expr") => "scrutinee",
3738
("Variant", "expr") => "discriminant",
3839
("FieldExpr", "expr") => "container",
40+
("MacroBlockExpr", "expr") => "tail_expr",
3941
(_, "name_ref") => "identifier",
4042
(_, "then_branch") => "then",
4143
(_, "else_branch") => "else_",

0 commit comments

Comments
 (0)