Skip to content

Commit

Permalink
[Fix] patch jsdoc syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
FrenchYeti committed Jun 1, 2020
1 parent dd49b18 commit 7f8598d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/CoreClass.js
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ Class.prototype.getStaticFields = function(){
/**
* To get <clinit> method
* TODO : do it during analysis
* @returns
* @returns {Method}
*/
Class.prototype.getClInit = function(){
for(let i in this.methods){
Expand Down
4 changes: 2 additions & 2 deletions src/SmaliVM.js
Original file line number Diff line number Diff line change
Expand Up @@ -1967,7 +1967,7 @@ class VM
regX[SYMBOL_OPE[oper.opcode.ope]](regV.getValue(), oper.opcode.byte),
`${this.getImmediateValue(regX)}${oper.opcode.ope}${this.getImmediateValue(regV)}`);

break;
//break;
}
else{

Expand Down Expand Up @@ -2008,7 +2008,7 @@ class VM
`${this.getImmediateValue(regV)}${oper.opcode.ope}${this.getRegisterName(oper.right)}`);
}

break;

}
else{
this.stack.setLocalSymbol(
Expand Down

0 comments on commit 7f8598d

Please sign in to comment.