# HG changeset patch # User Michael Van De Vanter # Date 1428713770 25200 # Node ID 0f3d81231ecbaf6ebf434eb0651ae60f2ba96ab2 # Parent 37912559d66205c843aae75eb87f0e89d3244d2b Truffle/Instrumentation: Javadoc diff -r 37912559d662 -r 0f3d81231ecb graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/ASTInstrumentListener.java --- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/ASTInstrumentListener.java Fri Apr 10 17:55:09 2015 -0700 +++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/ASTInstrumentListener.java Fri Apr 10 17:56:10 2015 -0700 @@ -32,7 +32,7 @@ * A receiver of Truffle execution events that can act on behalf of an external client. *

* The {@link Probe} argument provides access to the {@link SourceSection} associated with the - * event, as well as any {@link SyntaxTag}s that have been applied at that AST location. + * event, as well as any {@link SyntaxTag}s that have been applied at that AST node. *

* This listener is designed for clients that also require access to the AST execution state at the * time of the event. Clients that do not require access to the AST execution state should use the @@ -40,7 +40,7 @@ *

* Clients are free, of course, to record additional information in the listener implementation that * carries additional information about the context and reason for the particular {@link Instrument} - * that is to be created. + * that is to be created from the listener. */ public interface ASTInstrumentListener {