@@ -50,11 +50,11 @@ setproperty!(x::Tuple, f::Int, v, order::Symbol) = setfield!(x, f, v, order) # t
5050getproperty (x, f:: Symbol , order:: Symbol ) = (@inline ; getfield (x, f, order))
5151setproperty! (x, f:: Symbol , v, order:: Symbol ) = (@inline ; setfield! (x, f, convert (fieldtype (typeof (x), f), v), order))
5252
53- swapproperty! (x, f:: Symbol , v, order:: Symbol = :notatomic ) =
53+ swapproperty! (x, f:: Symbol , v, order:: Symbol = :not_atomic ) =
5454 (@inline ; Core. swapfield! (x, f, convert (fieldtype (typeof (x), f), v), order))
55- modifyproperty! (x, f:: Symbol , op, v, order:: Symbol = :notatomic ) =
55+ modifyproperty! (x, f:: Symbol , op, v, order:: Symbol = :not_atomic ) =
5656 (@inline ; Core. modifyfield! (x, f, op, v, order))
57- replaceproperty! (x, f:: Symbol , expected, desired, success_order:: Symbol = :notatomic , fail_order:: Symbol = success_order) =
57+ replaceproperty! (x, f:: Symbol , expected, desired, success_order:: Symbol = :not_atomic , fail_order:: Symbol = success_order) =
5858 (@inline ; Core. replacefield! (x, f, expected, convert (fieldtype (typeof (x), f), desired), success_order, fail_order))
5959
6060convert (:: Type{Any} , Core. @nospecialize x) = x
0 commit comments