Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ module Public {

/**
* Gets the uninitialized local variable corresponding to this node behind
* the given levels of indirection, if any.
* `index` number of indirections, if any.
*/
LocalVariable asIndirectUninitialized(int index) {
exists(IndirectUninitializedNode indirectUninitializedNode |
Expand All @@ -632,7 +632,7 @@ module Public {

/**
* Gets the uninitialized local variable corresponding to this node behind
* any levels of indirection, if any.
* a number indirections, if any.
*/
LocalVariable asIndirectUninitialized() { result = this.asIndirectUninitialized(_) }

Expand Down Expand Up @@ -812,7 +812,7 @@ module Public {
class IndirectUninitializedNode extends AbstractUninitializedNode {
IndirectUninitializedNode() { indirectionIndex > 0 }

/** Gets the level of indirection to get to this node. */
/** Gets the indirection index of this node. */
int getIndirectionIndex() { result = indirectionIndex }
}

Expand Down
Loading