changeset 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 c79d0ed46368
files graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/CoverageTracker.java graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/LineToProbesMap.java graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/NodeExecCounter.java
diffstat 3 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/CoverageTracker.java	Sun Feb 08 20:05:40 2015 -0800
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/CoverageTracker.java	Sun Feb 08 20:14:30 2015 -0800
@@ -38,9 +38,9 @@
 import com.oracle.truffle.api.source.*;
 
 /**
- * A {@link InstrumentationTool} that counts interpreter <em>execution calls</em> to AST nodes that hold a
- * specified {@linkplain SyntaxTag tag}, tabulated by source and line number associated with each
- * node. Tags are presumed to be applied external to the tool. If no tag is specified,
+ * An {@link InstrumentationTool} that counts interpreter <em>execution calls</em> to AST nodes that
+ * hold a specified {@linkplain SyntaxTag tag}, tabulated by source and line number associated with
+ * each node. Tags are presumed to be applied external to the tool. If no tag is specified,
  * {@linkplain StandardSyntaxTag#STATEMENT STATEMENT} is used, corresponding to conventional
  * behavior for code coverage tools.
  * <p>
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/LineToProbesMap.java	Sun Feb 08 20:05:40 2015 -0800
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/LineToProbesMap.java	Sun Feb 08 20:14:30 2015 -0800
@@ -32,8 +32,8 @@
 import com.oracle.truffle.api.source.*;
 
 /**
- * A {@link InstrumentationTool} that builds a map of every {@Probe} attached to some AST, indexed
- * by {@link Source} and line number.
+ * An {@link InstrumentationTool} that builds a map of every {@Probe} attached to some AST,
+ * indexed by {@link Source} and line number.
  */
 public final class LineToProbesMap extends InstrumentationTool {
 
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/NodeExecCounter.java	Sun Feb 08 20:05:40 2015 -0800
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/tools/NodeExecCounter.java	Sun Feb 08 20:14:30 2015 -0800
@@ -36,9 +36,10 @@
 import com.oracle.truffle.api.nodes.Node.Child;
 
 /**
- * A {@link InstrumentationTool} that counts interpreter <em>execution calls</em> to AST nodes, tabulated by
- * the type of called nodes; counting can be enabled <em>all</em> nodes or restricted to nodes with
- * a specified {@linkplain SyntaxTag tag} that is presumed to be applied external to the tool.
+ * An {@link InstrumentationTool} that counts interpreter <em>execution calls</em> to AST nodes,
+ * tabulated by the type of called nodes; counting can be enabled <em>all</em> nodes or restricted
+ * to nodes with a specified {@linkplain SyntaxTag tag} that is presumed to be applied external to
+ * the tool.
  * <p>
  * <b>Tool Life Cycle</b>
  * <p>