(self, s, loc, toks)
| 2764 | ]) |
| 2765 | |
| 2766 | def function(self, s, loc, toks): |
| 2767 | self.push_state() |
| 2768 | state = self.get_state() |
| 2769 | state.font = 'rm' |
| 2770 | hlist = Hlist([Char(c, state) for c in toks[0]]) |
| 2771 | self.pop_state() |
| 2772 | hlist.function_name = toks[0] |
| 2773 | return hlist |
| 2774 | |
| 2775 | def operatorname(self, s, loc, toks): |
| 2776 | self.push_state() |
nothing calls this directly
no test coverage detected