Data returns the data associated with the most recently successfully parsed opcode.
()
| 177 | // Data returns the data associated with the most recently successfully parsed |
| 178 | // opcode. |
| 179 | func (t *ScriptTokenizer) Data() []byte { |
| 180 | return t.data |
| 181 | } |
| 182 | |
| 183 | // Err returns any errors currently associated with the tokenizer. This will |
| 184 | // only be non-nil in the case a parsing error was encountered. |
no outgoing calls