All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.truffle.api.debug.impl.DebuggerInstrumentProvider Maven / Gradle / Ivy

Go to download

Truffle is a multi-language framework for executing dynamic languages that achieves high performance when combined with Graal.

There is a newer version: 24.1.1
Show 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;
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");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy