Expand description
EA06 tokenized script parsing.
Decodes the opcode-prefixed token stream of a compiled AutoIt (EA06) script
into a TokenStream via parse, and can re-render that stream back to
source-like text with TokenStream::render_source. Keyword, function, and
macro names are resolved and case-canonicalized through the lookup tables in
the tables submodule.
Structs§
- Token
Stream - Parsed token stream.
Enums§
- Token
- Parsed token.
- Token
Error - Token parser error.
Functions§
- parse
- Parses a tokenized AutoIt (EA06) script into a
TokenStream.