We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dc95de commit 99538f0Copy full SHA for 99538f0
1 file changed
go/ql/lib/semmle/go/dataflow/SSA.qll
@@ -194,15 +194,6 @@ abstract class SsaPseudoDefinition extends SsaImplicitDefinition {
194
* Gets an input of this pseudo-definition.
195
*/
196
abstract SsaVariable getAnInput();
197
-
198
- /**
199
- * Gets a textual representation of the inputs of this pseudo-definition
200
- * in lexicographical order.
201
- */
202
- string ppInputs() {
203
- result =
204
- concat(SsaVariable inp | inp = this.getAnInput() | inp.toString() order by inp.toString())
205
- }
206
}
207
208
/**
0 commit comments