Examples of MIVariableManager_LangExtension


Examples of melnorme.lang.ide.debug.core.services.MIVariableManager_LangExtension

public class GoDebugServicesExtensions extends DebugServicesExtensions {
 
  @Override
  protected MIVariableManager services_createMIVariableManager(DsfSession session,
      DsfServicesTracker servicesTracker) {
    return new MIVariableManager_LangExtension(session, servicesTracker) {
      @Override
      protected GDBType getCorrectedGdbType(String newTypeName, GDBType gdbType) {
        if(gdbType.getType() == GDBType.POINTER && gdbType instanceof GDBDerivedType) {
          GDBDerivedType gdbDerivedType = (GDBDerivedType) gdbType;
          return gdbTypeParser.new GDBDerivedType(gdbDerivedType.getChild(), GDBType.REFERENCE);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.