mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
Clarified AST
Generic parameters are treated in the next paragraph. Revised text for future compatibility
This commit is contained in:
@@ -133,7 +133,7 @@ AST:
|
||||
)
|
||||
|
||||
Note that with multiple infix operators, the command is parsed by operator
|
||||
precedence, with the end result mirroring Reverse Polish Notation.
|
||||
precedence.
|
||||
|
||||
Concrete syntax:
|
||||
|
||||
@@ -408,8 +408,8 @@ Documentation Comments
|
||||
----------------------
|
||||
|
||||
Double-hash (``##``) comments in the code actually have their own format,
|
||||
but *it doesn't matter what is there*. The AST will only show that a comment
|
||||
exists, not what it contains. Single-hash (``#``) comments are ignored.
|
||||
but the comments do not yet show up in the AST, which will only show that
|
||||
a comment exists, not what it contains. Single-hash (``#``) comments are ignored.
|
||||
|
||||
Concrete syntax:
|
||||
|
||||
@@ -785,7 +785,7 @@ AST:
|
||||
nnkTypeSection(
|
||||
nnkTypeDef(
|
||||
nnkIdent(!"A"),
|
||||
nnkEmpty(), # for pragmas
|
||||
nnkEmpty(),
|
||||
nnkIdent(!"int")
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user