comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/LineLocation.java @ 18485:e3c95cbbb50c

Truffle Instrumentation: major API revision, based around the Probe and Instrument classes; add Instrumentable API for language implementors, with most details automated; reimplemented to handle AST splitting automatically; more JUnit tests.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Sun, 23 Nov 2014 16:07:23 -0800
parents c88ab4f1f04a
children 50b22daf6d53
comparison
equal deleted inserted replaced
18484:e97e1f07a3d6 18485:e3c95cbbb50c
36 /** 36 /**
37 * Gets the 1-based number of a line in the source. 37 * Gets the 1-based number of a line in the source.
38 */ 38 */
39 int getLineNumber(); 39 int getLineNumber();
40 40
41 String getShortDescription();
42
41 } 43 }