comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/CoverageTracker.java @ 19187:c5b20395a8bf

Truffle/Instrumentation: eclipseformat
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Sun, 08 Feb 2015 20:14:30 -0800
parents 3d2296dbace9
children a2ff253c458f
comparison
equal deleted inserted replaced
19186:3d2296dbace9 19187:c5b20395a8bf
36 import com.oracle.truffle.api.nodes.*; 36 import com.oracle.truffle.api.nodes.*;
37 import com.oracle.truffle.api.nodes.Node.Child; 37 import com.oracle.truffle.api.nodes.Node.Child;
38 import com.oracle.truffle.api.source.*; 38 import com.oracle.truffle.api.source.*;
39 39
40 /** 40 /**
41 * A {@link InstrumentationTool} that counts interpreter <em>execution calls</em> to AST nodes that hold a 41 * An {@link InstrumentationTool} that counts interpreter <em>execution calls</em> to AST nodes that
42 * specified {@linkplain SyntaxTag tag}, tabulated by source and line number associated with each 42 * hold a specified {@linkplain SyntaxTag tag}, tabulated by source and line number associated with
43 * node. Tags are presumed to be applied external to the tool. If no tag is specified, 43 * each node. Tags are presumed to be applied external to the tool. If no tag is specified,
44 * {@linkplain StandardSyntaxTag#STATEMENT STATEMENT} is used, corresponding to conventional 44 * {@linkplain StandardSyntaxTag#STATEMENT STATEMENT} is used, corresponding to conventional
45 * behavior for code coverage tools. 45 * behavior for code coverage tools.
46 * <p> 46 * <p>
47 * <b>Tool Life Cycle</b> 47 * <b>Tool Life Cycle</b>
48 * <p> 48 * <p>