By default, codedox puts the returned type after `@return`:  However, when returning a structure, the return is missing:  ```haxe class Main { public static function main() {} public function foo():{x:Int, y:Int} { return {x:0, y:0}; } } ``` The situation with `@param` is similar, once you configure codedox to use `$type{}` there:  ```haxe class Main { public static function main() {} public function foo(point:{x:Int, y:Int}) { trace(point); } } ```