mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
Merge branch 'feature/method-name' into feature/service-stack
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
lgtm,codescanning
|
||||
* Generic methods return their names (`getName()`, `getQualifiedName()` and `toStringWithTypes()`) with angle brackets,
|
||||
for example `System.Linq.Enumerable.Empty<TResult>()` returns `Empty<>`, `System.Linq.Enumerable.Empty<>` and
|
||||
`Empty<TResult>()` respectively for the unbound generic method; and `Empty<Int32>`,
|
||||
`System.Linq.Enumerable.Empty<System.Int32>` and `Empty<int>()` respectively for the constructed generic case.
|
||||
* When accessing `getName()`, `getQualifiedName()` and `toStringWithTypes()` on constructed types, the type argument
|
||||
names are rendered by `getName()`, `getQualifiedName()` and `toStringWithTypes()` respectively.
|
||||
* `getUndecoratedName()` can be used to access the name without angle brackets.
|
||||
Reference in New Issue
Block a user