mirror of
https://github.com/github/codeql.git
synced 2026-04-17 21:14:02 +02:00
12 lines
283 B
Plaintext
12 lines
283 B
Plaintext
/** Provides definitions related to the namespace `Microsoft`. */
|
|
|
|
import csharp
|
|
|
|
/** The `Microsoft` namespace. */
|
|
class MicrosoftNamespace extends Namespace {
|
|
MicrosoftNamespace() {
|
|
this.getParentNamespace() instanceof GlobalNamespace and
|
|
this.hasName("Microsoft")
|
|
}
|
|
}
|