comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/SimpleInstrumentListener.java @ 20893:263ab98b3bf0

Truffle/Instrumentation: rename ASTInstrumentListener to StandardInstrumentListener
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Fri, 10 Apr 2015 21:14:14 -0700
parents 73b1844b5b14
children
comparison
equal deleted inserted replaced
20892:73b1844b5b14 20893:263ab98b3bf0
32 * The {@link Probe} instance provides access to the {@link SourceSection} associated with the 32 * The {@link Probe} instance provides access to the {@link SourceSection} associated with the
33 * event, as well as any {@link SyntaxTag}s that have been applied at that program's location. 33 * event, as well as any {@link SyntaxTag}s that have been applied at that program's location.
34 * <p> 34 * <p>
35 * This is the simplest kind of listener, suitable for clients that need no other information about 35 * This is the simplest kind of listener, suitable for clients that need no other information about
36 * the program's execution state at the time of the event. Clients that require access to the AST 36 * the program's execution state at the time of the event. Clients that require access to the AST
37 * execution state should use {@link ASTInstrumentListener}. 37 * execution state should use {@link StandardInstrumentListener}.
38 * <p> 38 * <p>
39 * Clients are free, of course, to record additional information in the listener implementation that 39 * Clients are free, of course, to record additional information in the listener implementation that
40 * carries additional information about the context and reason for the particular {@link Instrument} 40 * carries additional information about the context and reason for the particular {@link Instrument}
41 * that is to be created from the listener. 41 * that is to be created from the listener.
42 */ 42 */