1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Working on wrapping for formatter

This commit is contained in:
Brian Fiete 2020-03-28 14:26:14 -07:00
parent edcdb3bbb1
commit 076931cf3b
8 changed files with 315 additions and 66 deletions

View file

@ -1760,9 +1760,12 @@ public:
enum BfCommentKind
{
BfCommentKind_Normal,
BfCommentKind_Documentation_Pre,
BfCommentKind_Documentation_Post,
BfCommentKind_Line,
BfCommentKind_Block,
BfCommentKind_Documentation_Block_Pre,
BfCommentKind_Documentation_Line_Pre,
BfCommentKind_Documentation_Block_Post,
BfCommentKind_Documentation_Line_Post,
};
class BfCommentNode : public BfAstNode
@ -3182,5 +3185,6 @@ const char* BfGetOpName(BfUnaryOp unaryOp);
BfBinaryOp BfTokenToBinaryOp(BfToken token);
BfUnaryOp BfTokenToUnaryOp(BfToken token);
BfAssignmentOp BfTokenToAssignmentOp(BfToken token);
bool BfIsCommentBlock(BfCommentKind commentKind);
NS_BF_END