comparison truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Probe.java @ 22293:260e3cdf11ec

Truffle/Instrumentation: replace (non-functional) AdvancedInstrument kind with new EvalInstrument - new API much simpler: only new method Instrumenter.attach() plus new kind of listener - removed the "expected result type check", which is now left to clients - the code to be evaluated now represented as a Source
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Thu, 08 Oct 2015 16:48:42 -0400
parents 0df2f06977fa
children
comparison
equal deleted inserted replaced
22274:371045b1312d 22293:260e3cdf11ec
327 sb.append(tag.toString()); 327 sb.append(tag.toString());
328 } 328 }
329 sb.append("]"); 329 sb.append("]");
330 return sb.toString(); 330 return sb.toString();
331 } 331 }
332
333 Instrumenter getInstrumenter() {
334 return instrumenter;
335 }
332 } 336 }