
com.oracle.truffle.api.debug.impl.DebuggerInstrumentProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truffle-api Show documentation
Show all versions of truffle-api Show documentation
Truffle is a multi-language framework for executing dynamic languages
that achieves high performance when combined with Graal.
The newest version!
// CheckStyle: start generated
package com.oracle.truffle.api.debug.impl;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.instrumentation.TruffleInstrument.Registration;
import com.oracle.truffle.api.instrumentation.provider.TruffleInstrumentProvider;
import java.util.Collection;
import java.util.List;
@GeneratedBy(DebuggerInstrument.class)
@Registration(id = "debugger", name = "Debugger")
public final class DebuggerInstrumentProvider extends TruffleInstrumentProvider {
@Override
protected String getInstrumentClassName() {
return "com.oracle.truffle.api.debug.impl.DebuggerInstrument";
}
@Override
protected Object create() {
return new DebuggerInstrument();
}
@Override
protected Collection getServicesClassNames() {
return List.of("com.oracle.truffle.api.debug.Debugger");
}
@Override
protected List getInternalResourceIds() {
return List.of();
}
@Override
protected Object createInternalResource(String resourceId) {
throw new IllegalArgumentException(String.format("Unsupported internal resource id %s, supported ids are ", resourceId));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy