I am trying to access the source-code of R base functions like match.arg INCLUDING possible comments.
I found out that this information is contained in the attributes of an object under the name srcref
However the match.arg function does not have attributes:
attributes(match.arg)
#> NULL
My question is: Why does the base function match.arg not have attributes?