Files
codeql/ql/test/query-tests/Security
Max Schaefer d300ec6324 Refine Method.implements so that interface methods only implement themselves.
Without this restriction, the two `m`s in the following example are considered to implement each other, even though they aren't logically related:

```go
type I interface {
  m()
}

type J interface {
  m()
}

type K struct {
  I
  J
}
```

Previously, interface methods would sometimes implement themselves and sometimes not (see changes to test output for examples).
2020-05-15 11:09:17 +01:00
..
2020-05-13 15:28:49 +01:00
2019-12-06 12:14:53 +00:00
2020-05-13 10:07:14 -07:00
2020-05-13 10:07:14 -07:00
2020-05-13 10:07:14 -07:00
2020-01-17 10:25:10 +00:00
2020-04-02 23:49:57 -07:00