changeset 22273:0344879ec763

Delegate to PolyglotEngine, as the new version of JPDA debugger is supposed to work only with PolyglotEngine. Keep the overriden methods for old versions of debugger that rely on existence of TruffleVM class.
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Thu, 01 Oct 2015 15:32:28 +0200
parents 5309cc9668e3
children 371045b1312d
files truffle/com.oracle.truffle.api.vm/src/com/oracle/truffle/api/vm/TruffleVM.java
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.api.vm/src/com/oracle/truffle/api/vm/TruffleVM.java	Thu Oct 01 14:00:17 2015 +0200
+++ b/truffle/com.oracle.truffle.api.vm/src/com/oracle/truffle/api/vm/TruffleVM.java	Thu Oct 01 15:32:28 2015 +0200
@@ -162,10 +162,12 @@
 
     @Override
     void dispatchSuspendedEvent(SuspendedEvent event) {
+        super.dispatchSuspendedEvent(event);
     }
 
     @Override
     void dispatchExecutionEvent(ExecutionEvent event) {
+        super.dispatchExecutionEvent(event);
     }
 
     @Deprecated