Skip to content

Commit

Permalink
Add missing javadoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Earthcomputer committed Aug 26, 2022
1 parent bcabb86 commit c2ef9bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/me/coley/recaf/parse/bytecode/ast/ItfAST.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package me.coley.recaf.parse.bytecode.ast;

/**
* Itf AST for static interface method invocations.
*
* @author Earthcomputer
*/
public class ItfAST extends AST {
/**
* @param line Line number this node is written on.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ public DescAST getDesc() {
return desc;
}

/**
* @return Itf AST for static invocations of interface methods.
*/
public ItfAST getItf() {
return itf;
}
Expand Down

0 comments on commit c2ef9bb

Please sign in to comment.