| 100 | static const QChar kCommentMarker = QChar(0x01); |
| 101 | |
| 102 | static QString offsetComment(int offset) { |
| 103 | return QString(kCommentMarker) + QStringLiteral("// 0x%1").arg(QString::number(offset, 16).toUpper()); |
| 104 | } |
| 105 | |
| 106 | static QString emitField(GenContext& ctx, const Node& node) { |
| 107 | const NodeTree& tree = ctx.tree; |
no outgoing calls
no test coverage detected