| 847 | } |
| 848 | |
| 849 | __forceinline bool TypeDecl::isGoodFunctionType() const { |
| 850 | return baseType==Type::tFunction && dim.size()==0; |
| 851 | } |
| 852 | |
| 853 | __forceinline bool TypeDecl::isGoodLambdaType() const { |
| 854 | return baseType==Type::tLambda && dim.size()==0; |
no test coverage detected