! * \brief Constructor * \param kind The kind of the access step. * \param key The key of the access step. */
| 111 | * \param key The key of the access step. |
| 112 | */ |
| 113 | AccessStep(AccessKind kind, Any key) |
| 114 | : ObjectRef(make_object<AccessStepObj>(kind, std::move(key))) {} |
| 115 | |
| 116 | /*! |
| 117 | * \brief Create an access step for a object attribute access. |
nothing calls this directly
no outgoing calls
no test coverage detected