| 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 NoInterfaceObject, // testing interfaces do not appear on global objects | |
| 7 ] interface InternalSettingsGenerated { | 6 ] interface InternalSettingsGenerated { |
| 8 {%- for setting in settings if setting.type|to_idl_type %} | 7 {%- for setting in settings if setting.type|to_idl_type %} |
| 9 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}}); |
| 10 {%- endfor %} | 9 {%- endfor %} |
| 11 }; | 10 }; |
| OLD | NEW |