From: Ulya Trofimovich Date: Wed, 4 Nov 2015 14:35:42 +0000 (+0000) Subject: List examples in contents. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0cdcb8c8d16bbc5bb431d8469aeefa3f79705d94;p=re2c List examples in contents. --- diff --git a/src/examples.rst b/src/examples.rst index 3b04dc9c..ecb897e6 100644 --- a/src/examples.rst +++ b/src/examples.rst @@ -475,7 +475,7 @@ It confirms to the C++98 standard (except for a couple of hacks to simulate prep All nontrivial lexemes (integers, floating-point constants, strings and character literals) are parsed (not only recognized): numeric literals are converted to numbers, strings are unescaped. Some additional checks described in standard (e.g. overflows in integer literals) are also done. -In fact, C++ is easy an easy language to lex: unlike many other languages, lexer can proceed without feedback from parser. +In fact, C++ is an easy language to lex: unlike many other languages, lexer can proceed without feedback from parser. `[07_c++98.re] `_ diff --git a/src/manual.rst b/src/manual.rst index 0c0c5556..663810f1 100644 --- a/src/manual.rst +++ b/src/manual.rst @@ -24,6 +24,13 @@ - `Encodings`_ - `Generic interface`_ * `Examples`_ + - `Recognizing integers: the sentinel method`_ + - `Recognizing strings: the need for YYMAXFILL`_ + - `Arbitrary large input and YYFILL`_ + - `Parsing integers (multiple re2c blocks)`_ + - `Parsing integers (conditions)`_ + - `Braille patterns (encodings)`_ + - `C++98 lexer`_ * `Changelog`_ .. _About: