-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(all): virtualise invoke construction
- Loading branch information
1 parent
9550089
commit 9e6b1eb
Showing
6 changed files
with
100 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...rc/main/java/org/mapleir/ir/cfg/builder/ssa/expr/invoke/VirtualInvocationExprBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.mapleir.ir.cfg.builder.ssa.expr.invoke; | ||
|
||
import org.mapleir.app.factory.Builder; | ||
import org.mapleir.ir.code.Expr; | ||
import org.mapleir.ir.code.expr.invoke.InvocationExpr; | ||
import org.mapleir.ir.code.expr.invoke.StaticInvocationExpr; | ||
import org.mapleir.ir.code.expr.invoke.VirtualInvocationExpr; | ||
|
||
public interface VirtualInvocationExprBuilder extends Builder<VirtualInvocationExpr> { | ||
VirtualInvocationExprBuilder callType(InvocationExpr.CallType callType); | ||
VirtualInvocationExprBuilder args(Expr[] args); | ||
VirtualInvocationExprBuilder owner(String owner); | ||
VirtualInvocationExprBuilder name(String name); | ||
VirtualInvocationExprBuilder desc(String desc); | ||
} |