File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -242,9 +242,10 @@ FreeVariables GetFreeVariablesByLambda(
242
242
// Note: the start_pos given is a way to approximate "free variable with
243
243
// respect to this AST construct". i.e. all the references with defs that are
244
244
// defined before this start_pos point are considered free. This gives an easy
245
- // way to say "everything defined inside the body we don't need to worry about,
246
- // only tell me about references to things before this lexical position in the
247
- // file.
245
+ // way to say "everything defined inside the body we don't need to worry about
246
+ // -- only tell me about references to things before this lexical position in
247
+ // the file" -- "lexical position in the file" is an approximation for
248
+ // "everything defined outside of (before) this AST construct".
248
249
FreeVariables GetFreeVariablesByPos (const AstNode* node,
249
250
const Pos* start_pos = nullptr );
250
251
You can’t perform that action at this time.
0 commit comments