@@ -53,11 +53,11 @@ setproperty!(x::Tuple, f::Int, v, order::Symbol) = setfield!(x, f, v, order) # t
5353getproperty (x, f:: Symbol , order:: Symbol ) = (@inline ; getfield (x, f, order))
5454setproperty! (x, f:: Symbol , v, order:: Symbol ) = (@inline ; setfield! (x, f, convert (fieldtype (typeof (x), f), v), order))
5555
56- swapproperty! (x, f:: Symbol , v, order:: Symbol = :notatomic ) =
56+ swapproperty! (x, f:: Symbol , v, order:: Symbol = :not_atomic ) =
5757 (@inline ; Core. swapfield! (x, f, convert (fieldtype (typeof (x), f), v), order))
58- modifyproperty! (x, f:: Symbol , op, v, order:: Symbol = :notatomic ) =
58+ modifyproperty! (x, f:: Symbol , op, v, order:: Symbol = :not_atomic ) =
5959 (@inline ; Core. modifyfield! (x, f, op, v, order))
60- replaceproperty! (x, f:: Symbol , expected, desired, success_order:: Symbol = :notatomic , fail_order:: Symbol = success_order) =
60+ replaceproperty! (x, f:: Symbol , expected, desired, success_order:: Symbol = :not_atomic , fail_order:: Symbol = success_order) =
6161 (@inline ; Core. replacefield! (x, f, expected, convert (fieldtype (typeof (x), f), desired), success_order, fail_order))
6262
6363convert (:: Type{Any} , Core. @nospecialize x) = x
0 commit comments