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.
// CheckStyle: start generated
package com.oracle.truffle.api.debug.impl;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.instrumentation.TruffleInstrument;
import com.oracle.truffle.api.instrumentation.TruffleInstrument.Provider;
import com.oracle.truffle.api.instrumentation.TruffleInstrument.Registration;
import java.util.Arrays;
import java.util.Collection;
@GeneratedBy(DebuggerInstrument.class)
@Registration(id = "debugger", name = "Debugger")
public final class DebuggerInstrumentProvider implements Provider {
@Override
public String getInstrumentClassName() {
return "com.oracle.truffle.api.debug.impl.DebuggerInstrument";
}
@Override
public TruffleInstrument create() {
return new DebuggerInstrument();
}
@Override
public Collection getServicesClassNames() {
return Arrays.asList("com.oracle.truffle.api.debug.Debugger");
}
}