comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/ASTInstrumentListener.java @ 20892:73b1844b5b14

Truffle/Instrumentation: rename InstrumentListener to SimpleInstrumentListener
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Fri, 10 Apr 2015 21:00:26 -0700
parents 0f3d81231ecb
children
comparison
equal deleted inserted replaced
20891:0f3d81231ecb 20892:73b1844b5b14
34 * The {@link Probe} argument provides access to the {@link SourceSection} associated with the 34 * The {@link Probe} argument provides access to the {@link SourceSection} associated with the
35 * event, as well as any {@link SyntaxTag}s that have been applied at that AST node. 35 * event, as well as any {@link SyntaxTag}s that have been applied at that AST node.
36 * <p> 36 * <p>
37 * This listener is designed for clients that also require access to the AST execution state at the 37 * This listener is designed for clients that also require access to the AST execution state at the
38 * time of the event. Clients that do not require access to the AST execution state should use the 38 * time of the event. Clients that do not require access to the AST execution state should use the
39 * simpler {@link InstrumentListener}. 39 * {@link SimpleInstrumentListener}.
40 * <p> 40 * <p>
41 * Clients are free, of course, to record additional information in the listener implementation that 41 * Clients are free, of course, to record additional information in the listener implementation that
42 * carries additional information about the context and reason for the particular {@link Instrument} 42 * carries additional information about the context and reason for the particular {@link Instrument}
43 * that is to be created from the listener. 43 * that is to be created from the listener.
44 */ 44 */