| 816 | } |
| 817 | |
| 818 | __forceinline bool TypeDecl::isTuple() const { |
| 819 | return (baseType==Type::tTuple) && (dim.size()==0); |
| 820 | } |
| 821 | |
| 822 | __forceinline bool TypeDecl::isFunction() const { |
| 823 | return (baseType==Type::tFunction) && (dim.size()==0); |
no test coverage detected