Codegen: ignore `synth` properties in `Raw.qll`

This commit is contained in:
Paolo Tranquilli 2023-05-23 15:55:57 +02:00
Родитель 00fb796f3b
Коммит b09386a2c8
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -15,6 +15,7 @@ module Raw {
{{#final}}override string toString() { result = "{{name}}" }{{/final}}
{{#properties}}
{{^synth}}
/**
* {{>ql_property_doc}} *
{{#has_description}}
@ -26,6 +27,7 @@ module Raw {
{{type}} {{getter}}({{#is_indexed}}int index{{/is_indexed}}) {
{{tablename}}({{#tableparams}}{{^first}}, {{/first}}{{param}}{{/tableparams}})
}
{{/synth}}
{{/properties}}
}