| 1053 | } |
| 1054 | |
| 1055 | StringView BfAstNode::ToStringView() |
| 1056 | { |
| 1057 | int srcLen = GetSrcLength(); |
| 1058 | if (srcLen <= 0) |
| 1059 | { |
| 1060 | if (auto namedTypeRef = BfNodeDynCast<BfNamedTypeReference>(this)) |
| 1061 | return namedTypeRef->mNameNode->ToStringView(); |
| 1062 | return StringView(); |
| 1063 | } |
| 1064 | |
| 1065 | auto source = GetSourceData(); |
| 1066 | return StringView(source->mSrc + GetSrcStart(), srcLen); |
| 1067 | } |
| 1068 | |
| 1069 | void BfAstNode::ToString(StringImpl& str) |
| 1070 | { |
no test coverage detected