blob: 551ed907445f08c6f9fba4dc484971c798f647bc [file] [log] [blame]
{% from "templates/macros.tmpl" import license, source_files_for_generated_file %}
{{ license() }}
{{source_files_for_generated_file(template_file, input_files)}}
interface InternalRuntimeFlags {
{% for feature in standard_features %}
{%+ if feature.condition %}[Conditional={{feature.condition}}] {% endif -%}
{% if feature.settable_from_internals %}
attribute boolean {{feature.first_lowered_name}}Enabled;
{% else %}
readonly attribute boolean {{feature.first_lowered_name}}Enabled;
{% endif %}
{% endfor %}
};