cuplv / cuanto

Apache License 2.0
1 stars 1 forks source link

Integrate soot loading with soot ir #55

Open ftc opened 7 years ago

ftc commented 7 years ago

The goal of this task is to be able to run the following program in a concrete interpreter:

class C {
    int m(){
        int x = 3+1;
        int y = 4;
        return x*y;
    }
}
ftc commented 7 years ago

branch: interpreter-integration

ftc commented 7 years ago

See progress in WIP pull request: https://github.com/cuplv/cuanto/pull/60