Apply suggestions from code review

Co-authored-by: Tom Hvitved <hvitved@github.com>
This commit is contained in:
Arthur Baars
2022-05-23 12:18:48 +02:00
committed by GitHub
parent d6b0772f7c
commit eabf2ed2d3
2 changed files with 2 additions and 2 deletions

View File

@@ -183,7 +183,7 @@ class InstanceVariableAccess extends VariableAccess instanceof InstanceVariableA
final override string getAPrimaryQlClass() { result = "InstanceVariableAccess" }
/**
* Gets the synthetic receiver(`self`) of this instance variable access.
* Gets the synthetic receiver (`self`) of this instance variable access.
*/
final SelfVariableAccess getReceiver() { synthChild(this, 0, result) }

View File

@@ -626,7 +626,7 @@ module ExprNodes {
override InstanceVariableAccess getExpr() { result = ExprCfgNode.super.getExpr() }
/**
* Gets the synthetic receiver(`self`) of this instance variable access.
* Gets the synthetic receiver (`self`) of this instance variable access.
*/
final CfgNode getReceiver() { e.hasCfgChild(e.getReceiver(), this, result) }
}