mirror of
https://github.com/github/codeql.git
synced 2026-07-21 03:08:25 +02:00
16 lines
395 B
Plaintext
16 lines
395 B
Plaintext
/**
|
|
* Tool to generate C# stubs from a qltest snapshot.
|
|
*/
|
|
|
|
import csharp
|
|
import Stubs
|
|
|
|
/** All public declarations from assemblies. */
|
|
class AllExternalPublicDeclarations extends GeneratedDeclaration {
|
|
AllExternalPublicDeclarations() { this.fromLibrary() }
|
|
}
|
|
|
|
from Assembly a
|
|
select a.getFullName(), a.getName(), a.getVersion().toString(), a.getFile().getAbsolutePath(),
|
|
generatedCode(a)
|