OLD | NEW |
1 {% from "macros.tmpl" import license -%} | 1 {% from "macros.tmpl" import license %} |
2 {{ license() }} | 2 {{ license() }} |
3 | 3 |
4 [ | 4 [ |
5 WillBeGarbageCollected, | 5 WillBeGarbageCollected, |
6 ] interface InternalSettingsGenerated { | 6 ] interface InternalSettingsGenerated { |
7 {%- for setting in settings if setting.type|to_idl_type %} | 7 {% for setting in settings if setting.type|to_idl_type %} |
8 void set{{setting.name|upper_first}}({{setting.type|to_idl_type}} {{setting.
name}}); | 8 void set{{setting.name|upper_first}}({{setting.type|to_idl_type}} {{setting.
name}}); |
9 {%- endfor %} | 9 {% endfor %} |
10 }; | 10 }; |
OLD | NEW |