@@ -431,27 +431,43 @@ macro objcproperties(typ, ex)
431
431
read_properties = Dict {Symbol,Expr} ()
432
432
write_properties = Dict {Symbol,Expr} ()
433
433
434
- for arg in ex. args
435
- isa (arg, LineNumberNode) && continue
436
- Meta. isexpr (arg, :macrocall ) || propertyerror (" invalid property declaration $arg " )
434
+ # collect property declarations
435
+ properties = []
436
+ function process_property (ex)
437
+ isa (ex, LineNumberNode) && return
438
+ Meta. isexpr (ex, :macrocall ) || propertyerror (" invalid property declaration $ex " )
437
439
438
440
# split the contained macrocall into its parts
439
- cmd = arg. args[1 ]
441
+ cmd = ex. args[1 ]
442
+ args = []
440
443
kwargs = Dict ()
441
- positionals = []
442
- for arg in arg. args[2 : end ]
444
+ for arg in ex. args[2 : end ]
443
445
isa (arg, LineNumberNode) && continue
444
446
if isa (arg, Expr) && arg. head == :(= )
445
447
kwargs[arg. args[1 ]] = arg. args[2 ]
446
448
else
447
- push! (positionals , arg)
449
+ push! (args , arg)
448
450
end
449
451
end
450
452
453
+ # if we're dealing with `@static`, so recurse into the block
454
+ # TODO : liberally support all unknown macros?
455
+ if cmd == Symbol (" @static" )
456
+ ex = macroexpand (__module__, ex; recursive= false )
457
+ if ex != = nothing
458
+ process_property .(ex. args)
459
+ end
460
+ else
461
+ push! (properties, (; cmd, args, kwargs))
462
+ end
463
+ end
464
+ process_property .(ex. args)
465
+
466
+ for (cmd, args, kwargs) in properties
451
467
# there should only be a single positional argument,
452
468
# containing the property name (and optionally its type)
453
- length (positionals ) >= 1 || propertyerror (" $cmd requires a positional argument" )
454
- property_arg = popfirst! (positionals )
469
+ length (args ) >= 1 || propertyerror (" $cmd requires a positional argument" )
470
+ property_arg = popfirst! (args )
455
471
if property_arg isa Symbol
456
472
property = property_arg
457
473
srcTyp = nothing
@@ -509,14 +525,14 @@ macro objcproperties(typ, ex)
509
525
end
510
526
elseif cmd == Symbol (" @getproperty" )
511
527
haskey (read_properties, property) && propertyerror (" duplicate property $property " )
512
- function_arg = popfirst! (positionals )
528
+ function_arg = popfirst! (args )
513
529
read_properties[property] = quote
514
530
f = $ (esc (function_arg))
515
531
f (object)
516
532
end
517
533
elseif cmd == Symbol (" @setproperty!" )
518
534
haskey (write_properties, property) && propertyerror (" duplicate property $property " )
519
- function_arg = popfirst! (positionals )
535
+ function_arg = popfirst! (args )
520
536
write_properties[property] = quote
521
537
f = $ (esc (function_arg))
522
538
f (object, value)
@@ -525,7 +541,7 @@ macro objcproperties(typ, ex)
525
541
propertyerror (" unrecognized property declaration $cmd " )
526
542
end
527
543
528
- isempty (positionals ) || propertyerror (" too many positional arguments" )
544
+ isempty (args ) || propertyerror (" too many positional arguments" )
529
545
end
530
546
531
547
# generate Base.propertynames definition
0 commit comments