blob: 1ba1ed4145095a7859b38a14bf44ab8d6123db4d [file] [log] [blame]
{% from "macros.tmpl" import license %}
{{ license() }}
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 %}
};