Would it be possible to add support for autocompleting properties of [S7](https://rconsortium.github.io/S7/index.html) classes with @? E.g.: ```r library(S7) Point <- new_class("Point", properties = list( coords = class_numeric )) p1 <- Point(1) p1@coords ```