FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql/csharp/ql/lib/csharp.qll at codeql-cli/v2.19.1 · github/codeql · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
github
/
codeql
Public
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
10k
Code
Issues
996
Pull requests
467
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql
/
csharp
/
ql
/
lib
/
csharp.qll
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (39 loc) · 1.46 KB
Breadcrumbs
codeql
/
csharp
/
ql
/
lib
/
csharp.qll
Copy path
File metadata and controls
41 lines (39 loc) · 1.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* The default C# QL library.
*/
import
Customizations
import
semmle.code.csharp.Attribute
import
semmle.code.csharp.Callable
import
semmle.code.csharp.Comments
import
semmle.code.csharp.Element
import
semmle.code.csharp.Event
import
semmle.code.csharp.File
import
semmle.code.csharp.Generics
import
semmle.code.csharp.Location
import
semmle.code.csharp.Member
import
semmle.code.csharp.Namespace
import
semmle.code.csharp.AnnotatedType
import
semmle.code.csharp.Property
import
semmle.code.csharp.Stmt
import
semmle.code.csharp.Type
import
semmle.code.csharp.Using
import
semmle.code.csharp.Variable
import
semmle.code.csharp.XML
import
semmle.code.csharp.Preprocessor
import
semmle.code.csharp.exprs.Access
import
semmle.code.csharp.exprs.ArithmeticOperation
import
semmle.code.csharp.exprs.Assignment
import
semmle.code.csharp.exprs.BitwiseOperation
import
semmle.code.csharp.exprs.Call
import
semmle.code.csharp.exprs.ComparisonOperation
import
semmle.code.csharp.exprs.Creation
import
semmle.code.csharp.exprs.Dynamic
import
semmle.code.csharp.exprs.Expr
import
semmle.code.csharp.exprs.Literal
import
semmle.code.csharp.exprs.LogicalOperation
import
semmle.code.csharp.controlflow.ControlFlowGraph
import
semmle.code.csharp.dataflow.DataFlow
import
semmle.code.csharp.dataflow.TaintTracking
import
semmle.code.csharp.dataflow.SSA
/** Whether the source was extracted without a build command. */
predicate
extractionIsStandalone
(
)
{
exists
(
SourceFile
f
|
f
.
extractedStandalone
(
)
)
}
Back
|
FazBrowse Home
|
New Git URL