comparison truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/InstrumentationNode.java @ 22259:1348cc2e084e

Truffle/Instrumentation: javadoc
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Mon, 28 Sep 2015 12:34:51 -0700
parents c896a8e70777
children
comparison
equal deleted inserted replaced
22258:ff9d1426d744 22259:1348cc2e084e
25 package com.oracle.truffle.api.instrument; 25 package com.oracle.truffle.api.instrument;
26 26
27 import com.oracle.truffle.api.nodes.Node; 27 import com.oracle.truffle.api.nodes.Node;
28 28
29 /** 29 /**
30 * A marker interface for Truffle {@linkplain Node nodes} that internally implement the 30 * A marker interface for the Truffle {@linkplain Node Nodes} that internally implement the
31 * <em>Instrumentation Framework</em>. Such nodes should not be part of any Guest Language execution 31 * {@linkplain Instrumenter Instrumentation Framework} . Such nodes should not be part of any Guest
32 * semantics, and should in general not be visible to ordinary Instrumentation clients. 32 * Language execution semantics, and should in general not be visible to ordinary Instrumentation
33 * clients.
33 */ 34 */
34 public interface InstrumentationNode { 35 public interface InstrumentationNode {
35 36
36 /** 37 /**
37 * A short description of the particular role played by the node, intended to support debugging. 38 * A short description of the particular role played by the node, intended to support debugging.