diff 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
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>