Class SyntaxTagTrap
- java.lang.Object
-
- com.oracle.truffle.api.instrument.SyntaxTagTrap
-
public abstract class SyntaxTagTrap extends java.lang.Object
A trap that can be set to interrupt execution at probed nodes carrying a specific tag.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SyntaxTagTrap(SyntaxTag tag)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description SyntaxTag
getTag()
abstract void
tagTrappedAt(Node node, MaterializedFrame frame)
Callback that will be received whenever execution enters a node with the specified tag.
-
-
-
Constructor Detail
-
SyntaxTagTrap
protected SyntaxTagTrap(SyntaxTag tag)
-
-
Method Detail
-
getTag
public final SyntaxTag getTag()
-
tagTrappedAt
public abstract void tagTrappedAt(Node node, MaterializedFrame frame)
Callback that will be received whenever execution enters a node with the specified tag.
-
-