| 2044 | BfCommentKind mCommentKind; |
| 2045 | |
| 2046 | void GetDocString(StringImpl& docString) |
| 2047 | { |
| 2048 | ToString(docString); |
| 2049 | for (int i = 0; i < (int)docString.length(); i++) |
| 2050 | { |
| 2051 | char c = docString[i]; |
| 2052 | if (c == '\n') |
| 2053 | docString[i] = '\x3'; |
| 2054 | } |
| 2055 | } |
| 2056 | }; BF_AST_DECL(BfCommentNode, BfAstNode); |
| 2057 | |
| 2058 | class BfPreprocesorIgnoredSectionNode : public BfAstNode |
no test coverage detected