summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/java/ftbsc/lll/tools/PatternMatcher.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/ftbsc/lll/tools/PatternMatcher.java b/src/main/java/ftbsc/lll/tools/PatternMatcher.java
index 2d179e1..0d71125 100644
--- a/src/main/java/ftbsc/lll/tools/PatternMatcher.java
+++ b/src/main/java/ftbsc/lll/tools/PatternMatcher.java
@@ -215,6 +215,14 @@ public class PatternMatcher {
}
/**
+ * Matches any kind of label.
+ * @return the builder's state after the operation
+ */
+ public Builder label() {
+ return check(i -> i.getType() == AbstractInsnNode.LABEL);
+ }
+
+ /**
* Tells the pattern matcher to ignore LABEL instructions.
* @return the builder's state after the operation
*/