| 138 | } |
| 139 | |
| 140 | inline bool checkIsRootSelfInclude() const { |
| 141 | return checkIsIncludePattern() && ( patterns[1] == "$self" || patterns[1] == "$base" ); |
| 142 | } |
| 143 | |
| 144 | inline bool checkIsSourceInclude() const { |
| 145 | return checkIsIncludePattern() && String::startsWith( patterns[1], "source." ); |
nothing calls this directly
no test coverage detected