@@ -53,11 +53,11 @@ setproperty!(x::Tuple, f::Int, v, order::Symbol) = setfield!(x, f, v, order) # t
53
53
getproperty (x, f:: Symbol , order:: Symbol ) = (@inline ; getfield (x, f, order))
54
54
setproperty! (x, f:: Symbol , v, order:: Symbol ) = (@inline ; setfield! (x, f, convert (fieldtype (typeof (x), f), v), order))
55
55
56
- swapproperty! (x, f:: Symbol , v, order:: Symbol = :notatomic ) =
56
+ swapproperty! (x, f:: Symbol , v, order:: Symbol = :not_atomic ) =
57
57
(@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 ) =
59
59
(@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) =
61
61
(@inline ; Core. replacefield! (x, f, expected, convert (fieldtype (typeof (x), f), desired), success_order, fail_order))
62
62
63
63
convert (:: Type{Any} , Core. @nospecialize x) = x
0 commit comments