(self, pos, token)
| 104 | return self._cid2unicode |
| 105 | |
| 106 | def do_keyword(self, pos, token): |
| 107 | if token is self.KEYWORD_PUT: |
| 108 | ((_,key),(_,value)) = self.pop(2) |
| 109 | if (isinstance(key, int) and |
| 110 | isinstance(value, PSLiteral)): |
| 111 | self.add_results((key, literal_name(value))) |
| 112 | return |
| 113 | |
| 114 | |
| 115 | ## CFFFont |
nothing calls this directly
no test coverage detected