@@ -11,6 +11,7 @@ use crate::{util, ParseResult};
11
11
12
12
use proc_macro2:: { Ident , TokenStream } ;
13
13
use quote:: quote;
14
+ use venial:: FnParam ;
14
15
15
16
/// Codegen for `#[godot_api] impl ISomething for MyType`
16
17
pub fn transform_trait_impl ( original_impl : venial:: Impl ) -> ParseResult < TokenStream > {
@@ -211,7 +212,7 @@ pub fn transform_trait_impl(original_impl: venial::Impl) -> ParseResult<TokenStr
211
212
method_name_str => {
212
213
#[ cfg( since_api = "4.4" ) ]
213
214
let method_name_ident = method. name . clone ( ) ;
214
- let method = util:: reduce_to_signature ( method) ;
215
+ let mut method = util:: reduce_to_signature ( method) ;
215
216
216
217
// Godot-facing name begins with underscore.
217
218
//
@@ -223,7 +224,14 @@ pub fn transform_trait_impl(original_impl: venial::Impl) -> ParseResult<TokenStr
223
224
format ! ( "_{method_name_str}" )
224
225
} ;
225
226
226
- let signature_info = into_signature_info ( method, & class_name, false ) ;
227
+ // Some virtual methods are GdSelf, but none are static, so if the first param isn't a receiver (&self, etc) it's GdSelf
228
+ let is_gd_self = matches ! ( method. params. first( ) , Some ( ( FnParam :: Typed ( _) , _) ) ) ;
229
+ if is_gd_self {
230
+ // The GdSelf receiver is handled by `into_signature_info`
231
+ method. params . inner . remove ( 0 ) ;
232
+ }
233
+
234
+ let signature_info = into_signature_info ( method, & class_name, is_gd_self) ;
227
235
228
236
// Overridden ready() methods additionally have an additional `__before_ready()` call (for OnReady inits).
229
237
let before_kind = if method_name_str == "ready" {
0 commit comments