File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -136,8 +136,9 @@ defmodule Macro do
136
136
137
137
* `:closing` - contains metadata about the closing pair, such as a `}`
138
138
in a tuple or in a map, or such as the closing `)` in a function call
139
- with parens. The `:closing` does not delimit the end of expression if
140
- there are `:do` and `:end` metadata (when `:token_metadata` is true)
139
+ with parens (when `:token_metadata` is true). If the function call
140
+ has a do-end block attached to it, its metadata is found under the
141
+ `:do` and `:end` metadata
141
142
142
143
* `:column` - the column number of the AST node (when `:columns` is true).
143
144
Note column information is always discarded from quoted code.
@@ -154,8 +155,8 @@ defmodule Macro do
154
155
`do`-`end` blocks (when `:token_metadata` is true)
155
156
156
157
* `:end_of_expression` - denotes when the end of expression effectively
157
- happens. Available for all expressions except the last one inside a
158
- `__block__` (when `:token_metadata` is true)
158
+ happens (when `:token_metadata` is true) . Available for all expressions
159
+ except the last one inside a `__block__`
159
160
160
161
* `:indentation` - indentation of a sigil heredoc
161
162
You can’t perform that action at this time.
0 commit comments