Files
codeql/misc/codegen/templates/ql_stub.mustache
2023-02-27 09:46:48 +01:00

19 lines
558 B
Plaintext

// generated by {{generator}}, remove this comment if you wish to edit this file
private import {{base_import}}
{{#has_ipa_accessors}}
private import {{import_prefix}}.Raw
private import {{import_prefix}}.Synth
{{/has_ipa_accessors}}
{{#ql_internal}}
/**
* INTERNAL: Do not use.
*/
{{/ql_internal}}
class {{name}} extends Generated::{{name}} {
{{#ipa_accessors}}
private
cached {{type}} getUnderlying{{argument}}() { this = Synth::T{{name}}({{#constructorparams}}{{^first}},{{/first}}{{param}}{{/constructorparams}})}
{{/ipa_accessors}}
}