Ruby: only drop to CFG layer for getConstantValue()

This commit is contained in:
Asger F 2022-11-03 10:18:31 +01:00
Родитель cf4a3e0bbe
Коммит a195ea942e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -56,7 +56,7 @@ class Node extends TNode {
Node getASuccessor() { localFlowStep(this, result) }
/** Gets the constant value of this expression, if any. */
ConstantValue getConstantValue() { result = this.asExpr().getExpr().getConstantValue() }
ConstantValue getConstantValue() { result = this.asExpr().getConstantValue() }
/**
* Gets the callable corresponding to this block, lambda expression, or call to `proc` or `lambda`.