Index: Source/build/scripts/templates/InternalRuntimeFlags.idl.tmpl |
diff --git a/Source/build/scripts/templates/InternalRuntimeFlags.idl.tmpl b/Source/build/scripts/templates/InternalRuntimeFlags.idl.tmpl |
index cf1e78bf629c3e8a50390a0c9b24eb4aecdb604a..7134eb6f02b8730e86ac7ffcdb5fc849479d507e 100644 |
--- a/Source/build/scripts/templates/InternalRuntimeFlags.idl.tmpl |
+++ b/Source/build/scripts/templates/InternalRuntimeFlags.idl.tmpl |
@@ -1,15 +1,15 @@ |
-{% from "macros.tmpl" import license -%} |
+{% from "macros.tmpl" import license %} |
{{ license() }} |
[ |
WillBeGarbageCollected, |
] interface InternalRuntimeFlags { |
-{%- for feature in features if not feature.custom %} |
-{#- |
+ {% for feature in features if not feature.custom %} |
+{# |
Currently assuming that runtime flags cannot be changed after startup |
it's possible that some can be and should be conditionally readonly. |
#} |
- {% if feature.condition -%} [Conditional={{feature.condition}}] {% endif -%} |
+ {%+ if feature.condition %}[Conditional={{feature.condition}}] {% endif -%} |
readonly attribute boolean {{feature.first_lowered_name}}Enabled; |
-{%- endfor %} |
+ {% endfor %} |
}; |