fullPath<T> method
JsonPath<T>
fullPath<T>()
Implementation
JsonPath<T> fullPath<T>() {
assert(paths.length == 1, "Multiple properties - can only use this getter for single paths");
return (basePath + path).cast<T>();
}