-
Update README and TODO
-
Handle parsing errors - use the
ParserError
-
Keep track of each instance's superclasses
-
Printing values
Foo@2c7b84de
?- Object.toString()
-
Make sure
<clinit>
is run before creating the first instance depending on it - Static variables + Inheritance -
Documentation
-
Better executable (something like:
./aar main.dex --main Main.hello_world --args 10 15
) -
Multiple input DEX-files
-
Remove python as a dependency?
- Makefile
build.rs
?
-
Remove android as a dependency
- Is this even possible?
-
Test environment (run in both java and dalvik to compare output)
-
Unit tests?
- Keep track of subclasses
- Does the order of the handlers matter?
- Rename handlers and/or exceptions type from something like
Ljava/lang/ArithmeticException;
to our naming convention
- Find a better way to write the standard library than what we do in the
std_env
mod- Especially necessary when we get to writing the android-specific built in libraries
- Better strings + test performance
Since aar heavily depends on dexparser
and it seems to be quite untested and immature, we may need to update/rewrite some parts of it. Here are a few todos for the dexparser crate that would benefit the aar project.
-
What is, and how do we use
TryItem.code_units
?- Doesn't seem to be actual code units
- Error in the library?
- For now: Replace
code_units
with the original rawstart_addr
andinsn_count
(and usegit="https://github.com/maekoos/dexparser.git"
)
-
Too much exposed on
Code
?- Both
tries
andhandlers
- should only exposehandlers
or use aRc<EncodedCatchHandler>
?
- Both