Skip to content

Commit 41ab1d9

Browse files
committed
docs(web): add newlines at the beginning of lists
Signed-off-by: Masatake YAMATO <[email protected]>
1 parent f144bc8 commit 41ab1d9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/parser-v.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ The V Parser reads tokens and parses V grammar in parallel (i.e., it does not
6060
build an AST).
6161

6262
The individual grammar parsers all follow these simple rules:
63+
6364
- when called, `token` argument already holds the first token which an
6465
individual grammar parser should recognise
6566
- on return, individual parser functions read only the tokens they recognises
@@ -93,6 +94,7 @@ When the lexer returns an `IDENT` or `TYPE` and `parseFullyQualified()` is
9394
subsequently called to consume any additional tokens which may make-up a
9495
fully-qualified identifier, the provided `token` is also updated to reflect the
9596
final, fully-qualified identifier, so that:
97+
9698
- token->string is the whole, fully-qualified name of the identifier (e.g.,
9799
`user.id`)
98100
- token->type is updated to `IDENT` or `TYPE` to reflect the last part of the

0 commit comments

Comments
 (0)