| 1037 | } |
| 1038 | |
| 1039 | String BfAstNode::ToString() |
| 1040 | { |
| 1041 | int srcLen = GetSrcLength(); |
| 1042 | if (srcLen <= 0) |
| 1043 | { |
| 1044 | if (auto namedTypeRef = BfNodeDynCast<BfNamedTypeReference>(this)) |
| 1045 | return namedTypeRef->mNameNode->ToString(); |
| 1046 | |
| 1047 | return ""; |
| 1048 | } |
| 1049 | |
| 1050 | auto source = GetSourceData(); |
| 1051 | String str(source->mSrc + GetSrcStart(), srcLen); |
| 1052 | return str; |
| 1053 | } |
| 1054 | |
| 1055 | StringView BfAstNode::ToStringView() |
| 1056 | { |
no test coverage detected