File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,11 @@ export interface GeneratedRange {
85
85
* or an array of `BindingRange`s, e.g. if computing the value requires different expressions
86
86
* throughout the range or if the variable is only available in parts of the `GeneratedRange`.
87
87
*
88
- * `undefined` denotes that the value of a variable is unavailble in the whole range.
88
+ * When a value uses `BindingRange[]`, then the "from" of the first `BindingRange` and the
89
+ * "to" of the last `BindingRange` are equal to the GeneratedRange's "start" and "end" position
90
+ * respectively.
91
+ *
92
+ * `undefined` denotes that the value of a variable is unavailable in the whole range.
89
93
* This can happen e.g. if the variable was optimized out and can't be recomputed.
90
94
*/
91
95
values : ( string | undefined | BindingRange [ ] ) [ ] ;
You can’t perform that action at this time.
0 commit comments