mirror of
https://github.com/github/codeql.git
synced 2026-04-25 00:35:20 +02:00
Address review comments
This commit is contained in:
@@ -87,7 +87,7 @@ abstract class SummarizedCallable extends LibraryCallable {
|
||||
/**
|
||||
* Same as
|
||||
*
|
||||
* ```rb
|
||||
* ```ql
|
||||
* propagatesFlow(
|
||||
* SummaryComponentStack input, SummaryComponentStack output, boolean preservesValue
|
||||
* )
|
||||
@@ -106,10 +106,10 @@ abstract class SummarizedCallable extends LibraryCallable {
|
||||
predicate clearsContent(int i, DataFlow::Content content) { none() }
|
||||
}
|
||||
|
||||
private class SummarizedCallableAdaptor extends Impl::Public::SummarizedCallable {
|
||||
private class SummarizedCallableAdapter extends Impl::Public::SummarizedCallable {
|
||||
private SummarizedCallable sc;
|
||||
|
||||
SummarizedCallableAdaptor() { this = TLibraryCallable(sc) }
|
||||
SummarizedCallableAdapter() { this = TLibraryCallable(sc) }
|
||||
|
||||
final override predicate propagatesFlow(
|
||||
SummaryComponentStack input, SummaryComponentStack output, boolean preservesValue
|
||||
|
||||
@@ -57,7 +57,7 @@ class DataFlowCallable extends TDataFlowCallable {
|
||||
/** Gets the underlying source code callable, if any. */
|
||||
Callable asCallable() { this = TCfgScope(result) }
|
||||
|
||||
/** Get the underlying library callable, if any. */
|
||||
/** Gets the underlying library callable, if any. */
|
||||
LibraryCallable asLibraryCallable() { this = TLibraryCallable(result) }
|
||||
|
||||
/** Gets a textual representation of this callable. */
|
||||
|
||||
Reference in New Issue
Block a user