chromium/third_party/blink/renderer/build/scripts/templates/fields/keyword.tmpl

{% import 'templates/fields/base.tmpl' as base %}

{% macro decl_public_methods(field) -%}
{{base.decl_public_getter_method(field)}}
{{base.decl_public_setter_method(field)}}
{{base.decl_public_resetter_method(field)}}
{%- endmacro %}

{% macro decl_protected_methods(field) -%}
{{base.decl_protected_getter_method(field)}}
{{base.decl_protected_setter_method(field)}}
{{base.decl_protected_resetter_method(field)}}
{{base.decl_protected_mutable_method(field)}}
{%- endmacro %}