diff options
Diffstat (limited to 'src/parse/lex.cpp')
-rw-r--r-- | src/parse/lex.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/parse/lex.cpp b/src/parse/lex.cpp index a3187cda..cb97022d 100644 --- a/src/parse/lex.cpp +++ b/src/parse/lex.cpp @@ -1042,3 +1042,9 @@ Span TokenStream::end_span(ProtoSpan ps) const ); } + +SERIALISE_TYPE_A(TokenTree::, "TokenTree", { + s.item(m_tok); + s.item(m_subtrees); +}) + |