comparison truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ReturnTypeSpecializationTest.java @ 22003:5bc7f7b867ab

Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Sat, 18 Jul 2015 18:03:36 +0200
parents 9c8c0937da41
children dc83cc1f94f2
comparison
equal deleted inserted replaced
22002:324997830dc9 22003:5bc7f7b867ab
60 60
61 @Child TestChildNode left; 61 @Child TestChildNode left;
62 @Child TestChildNode right; 62 @Child TestChildNode right;
63 63
64 public TestRootNode(FrameDescriptor descriptor, TestChildNode left, TestChildNode right) { 64 public TestRootNode(FrameDescriptor descriptor, TestChildNode left, TestChildNode right) {
65 super(null, descriptor); 65 super(TestingLanguage.class, null, descriptor);
66 this.left = left; 66 this.left = left;
67 this.right = right; 67 this.right = right;
68 } 68 }
69 69
70 @Override 70 @Override