mirror of
https://github.com/github/codeql.git
synced 2026-05-25 08:37:20 +02:00
18 lines
564 B
Plaintext
18 lines
564 B
Plaintext
import powershell
|
|
|
|
class ModuleSpecification extends @module_specification {
|
|
string toString() { result = this.getName() }
|
|
|
|
string getName() { module_specification(this, result, _, _, _, _) }
|
|
|
|
string getGuid() { module_specification(this, _, result, _, _, _) }
|
|
|
|
string getMaxVersion() { module_specification(this, _, _, result, _, _) }
|
|
|
|
string getRequiredVersion() { module_specification(this, _, _, _, result, _) }
|
|
|
|
string getVersion() { module_specification(this, _, _, _, _, result) }
|
|
|
|
Location getLocation() { result instanceof EmptyLocation }
|
|
}
|