@@ -458,6 +458,7 @@ static jl_binding_t *new_binding(jl_module_t *mod, jl_sym_t *name)
458
458
b -> publicp = 0 ;
459
459
b -> deprecated = 0 ;
460
460
b -> did_print_backdate_admonition = 0 ;
461
+ b -> did_print_implicit_import_admonition = 0 ;
461
462
JL_GC_PUSH1 (& b );
462
463
b -> globalref = jl_new_globalref (mod , name , b );
463
464
jl_gc_wb (b , b -> globalref );
@@ -537,14 +538,14 @@ JL_DLLEXPORT jl_module_t *jl_get_module_of_binding(jl_module_t *m, jl_sym_t *var
537
538
538
539
static NOINLINE void print_backdate_admonition (jl_binding_t * b ) JL_NOTSAFEPOINT
539
540
{
541
+ b -> did_print_backdate_admonition = 1 ;
540
542
jl_safe_printf (
541
543
"WARNING: Detected access to binding `%s.%s` in a world prior to its definition world.\n"
542
544
" Julia 1.12 has introduced more strict world age semantics for global bindings.\n"
543
545
" !!! This code may malfunction under Revise.\n"
544
546
" !!! This code will error in future versions of Julia.\n"
545
547
"Hint: Add an appropriate `invokelatest` around the access to this binding.\n" ,
546
548
jl_symbol_name (b -> globalref -> mod -> name ), jl_symbol_name (b -> globalref -> name ));
547
- b -> did_print_backdate_admonition = 1 ;
548
549
}
549
550
550
551
static inline void check_backdated_binding (jl_binding_t * b , enum jl_partition_kind kind ) JL_NOTSAFEPOINT
@@ -696,10 +697,12 @@ JL_DLLEXPORT jl_binding_t *jl_get_binding_for_method_def(jl_module_t *m, jl_sym_
696
697
else if (kind != BINDING_KIND_IMPORTED ) {
697
698
int should_error = strcmp (jl_symbol_name (var ), "=>" ) == 0 ;
698
699
jl_module_t * from = jl_binding_dbgmodule (b , m , var );
699
- if (should_error )
700
+ if (should_error ) {
700
701
jl_errorf ("invalid method definition in %s: function %s.%s must be explicitly imported to be extended" ,
701
702
jl_module_debug_name (m ), jl_module_debug_name (from ), jl_symbol_name (var ));
702
- else
703
+ }
704
+ else if (!b -> did_print_implicit_import_admonition ) {
705
+ b -> did_print_implicit_import_admonition = 1 ;
703
706
jl_printf (JL_STDERR , "WARNING: Constructor for type \"%s\" was extended in `%s` without explicit qualification or import.\n"
704
707
" NOTE: Assumed \"%s\" refers to `%s.%s`. This behavior is deprecated and may differ in future versions.`\n"
705
708
" NOTE: This behavior may have differed in Julia versions prior to 1.12.\n"
@@ -709,6 +712,7 @@ JL_DLLEXPORT jl_binding_t *jl_get_binding_for_method_def(jl_module_t *m, jl_sym_
709
712
jl_symbol_name (var ), jl_module_debug_name (from ), jl_symbol_name (var ),
710
713
jl_symbol_name (var ), jl_symbol_name (var ), jl_module_debug_name (from ), jl_symbol_name (var ),
711
714
jl_module_debug_name (from ), jl_symbol_name (var ));
715
+ }
712
716
}
713
717
return ownerb ;
714
718
}
0 commit comments