Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 {% import 'fields/base.tmpl' as base %} | |
|
nainar
2017/05/30 04:13:45
import keyword here
shend
2017/05/31 07:52:07
done.
| |
| 2 | |
| 3 {% macro decl_public_methods(field) -%} | |
| 4 {{base.decl_initial_method(field)}} | |
| 5 {{base.decl_getter_method(field)}} | |
| 6 {{base.decl_setter_method(field)}} | |
| 7 {{base.decl_resetter_method(field)}} | |
| 8 {%- endmacro %} | |
| 9 | |
| 10 {% macro decl_protected_methods(field) -%} | |
| 11 {%- endmacro %} | |
| OLD | NEW |