comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/ExecutionEvents.java @ 16859:1051d6e4b61b

truffle api: update comments
author Bernhard Urban <bernhard.urban@jku.at>
date Tue, 19 Aug 2014 13:51:14 +0200
parents 0c6d8a08e31b
children
comparison
equal deleted inserted replaced
16858:a8af2abc2039 16859:1051d6e4b61b
26 26
27 import com.oracle.truffle.api.frame.*; 27 import com.oracle.truffle.api.frame.*;
28 import com.oracle.truffle.api.nodes.*; 28 import com.oracle.truffle.api.nodes.*;
29 29
30 /** 30 /**
31 * Normal events during program execution at Truffle AST nodes that are reported via a {@link Probe} 31 * Normal events at each Truffle AST {@link Node} that occur during guest language execution, and
32 * associated with the node, and made available to the probe's attached {@link Instrument}s. 32 * which the {@link Probe} associated with that node, if any, reports to every {@link Instrument}
33 * attached to the {@link Probe}.
33 * <p> 34 * <p>
34 * <strong>Disclaimer:</strong> experimental interface under development. 35 * <strong>Disclaimer:</strong> experimental interface under development.
35 */ 36 */
36 public interface ExecutionEvents { 37 public interface ExecutionEvents {
37 38