diff options
author | apos <apos@yandex-team.ru> | 2022-02-10 16:48:19 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:19 +0300 |
commit | d8c48ca4b6363a494157ae6afe41157fae5ef5c1 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 | |
parent | ba88f9ae72815eddabca66bb72d4c18a5de35750 (diff) | |
download | ydb-d8c48ca4b6363a494157ae6afe41157fae5ef5c1.tar.gz |
Restoring authorship annotation for <apos@yandex-team.ru>. Commit 2 of 2.
-rw-r--r-- | contrib/tools/ragel6/rlparse.kl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tools/ragel6/rlparse.kl b/contrib/tools/ragel6/rlparse.kl index e3ed936ab54..36b8777b844 100644 --- a/contrib/tools/ragel6/rlparse.kl +++ b/contrib/tools/ragel6/rlparse.kl @@ -1241,13 +1241,13 @@ nonterm inline_block_interpret uses inline_item; inline_block_item: inline_expr_any final { - $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); + $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); }; inline_block_item: inline_block_symbol final { - $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); + $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); }; inline_block_item: @@ -1338,13 +1338,13 @@ inline_expr_item: inline_expr_any final { /* Return a text segment. */ - $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); + $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); }; inline_expr_item: inline_expr_symbol final { /* Return a text segment, must heap alloc the text. */ - $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); + $$->inlineItem = new InlineItem( $1->token.loc, $1->token.data, InlineItem::Text ); }; inline_expr_item: inline_expr_interpret |