(self, style)
| 884 | return {} |
| 885 | |
| 886 | def _set_style(self, style): |
| 887 | if self.runs: |
| 888 | self.runs[-1].style = style |
| 889 | else: |
| 890 | # No runs, create a new one, with style and empty string. |
| 891 | self.runs.append(BabelRun(s='', style=style)) |
| 892 | |
| 893 | style = property(_get_style, _set_style) |
| 894 |