comparison graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/InstrumentationTest.java @ 16856:7833417c8172

Changes to Instrumentation
author David Piorkowski <david.piorkowski@oracle.com>
date Mon, 18 Aug 2014 14:36:12 -0700
parents 8c606e8053b8
children 5d16da2ca0c8
comparison
equal deleted inserted replaced
16855:226552569e34 16856:7833417c8172
186 @Child private RootNode child; 186 @Child private RootNode child;
187 private Probe probe; 187 private Probe probe;
188 188
189 public TestWrapper(RootNode child, ExecutionContext context) { 189 public TestWrapper(RootNode child, ExecutionContext context) {
190 this.child = insert(child); 190 this.child = insert(child);
191 this.probe = context.getProbe(child.getSourceSection()); 191 this.probe = context.createProbe(child.getSourceSection());
192 } 192 }
193 193
194 public boolean isTaggedAs(SyntaxTag tag) { 194 public boolean isTaggedAs(SyntaxTag tag) {
195 return false; 195 return false;
196 } 196 }