What are the 3 types of defused expressions?

type examples definition
calls f(1, 2, 3)
1 + 1
the action of calling a function to compute a new value
symbols x
df
named objects
constants 1
NULL
the actual object

Note: Defused constants are still the constants themselves.

expr(1) == 1
#> TRUE