Add Editable.toString flow step

This commit is contained in:
Tony Torralba
2022-04-26 11:00:41 +02:00
parent 6738270b65
commit 2ee83e2ba2
35 changed files with 905 additions and 29 deletions

View File

@@ -0,0 +1,11 @@
import android.widget.EditText;
public class TestWidget {
private void sink(Object sink) {}
public void test(EditText t) {
sink(t.getText().toString()); // $ hasTaintFlow
}
}