jv_libgdbs.st
changeset 45 deb908479a37
parent 42 499dc5d38707
child 47 4f5d75acecb0
equal deleted inserted replaced
44:e78460ac5d58 45:deb908479a37
    27      This method is generated automatically,
    27      This method is generated automatically,
    28      by searching along the inheritance chain of all of my classes."
    28      by searching along the inheritance chain of all of my classes."
    29 
    29 
    30     ^ #(
    30     ^ #(
    31         #'stx:goodies/announcements'    "Announcement - superclass of GDBAsyncEvent"
    31         #'stx:goodies/announcements'    "Announcement - superclass of GDBAsyncEvent"
       
    32         #'stx:goodies/magritte'    "Magritte::MAAccessor - superclass of GDBMAPropertyAccessor"
    32         #'stx:goodies/sunit'    "TestAsserter - superclass of GDBSimulatorResource"
    33         #'stx:goodies/sunit'    "TestAsserter - superclass of GDBSimulatorResource"
    33         #'stx:libbasic'    "ArithmeticValue - extended"
    34         #'stx:libbasic'    "Collection - superclass of GDBEventSet"
    34     )
    35     )
    35 !
    36 !
    36 
    37 
    37 referencedPreRequisites
    38 referencedPreRequisites
    38     "list packages which are a prerequisite, because they contain
    39     "list packages which are a prerequisite, because they contain
    73         GDBError
    74         GDBError
    74         GDBEvent
    75         GDBEvent
    75         GDBEventSet
    76         GDBEventSet
    76         GDBEventSubscription
    77         GDBEventSubscription
    77         GDBInternalPipeStream
    78         GDBInternalPipeStream
       
    79         GDBMAContainer
       
    80         GDBMAPropertyAccessor
    78         GDBObject
    81         GDBObject
    79         GDBPTY
    82         GDBPTY
    80         GDBProcess
    83         GDBProcess
    81         GDBSessionRecord
    84         GDBSessionRecord
    82         (GDBSimulatorResource autoload)
    85         (GDBSimulatorResource autoload)
    83         GDBThreadStatus
    86         GDBThreadStatus
    84         GDBTransientDataHolder
    87         GDBTransientDataHolder
    85         GDBValueDescriptor
       
    86         GDBValueDescriptorError
       
    87         #'jv_libgdbs'
    88         #'jv_libgdbs'
    88         GDBAsyncEvent
    89         GDBAsyncEvent
    89         GDBCLICommand
    90         GDBCLICommand
    90         GDBCommandEvent
    91         GDBCommandEvent
    91         GDBCommandResult
    92         GDBCommandResult
    92         GDBCommandResultEvent
    93         GDBCommandResultEvent
    93         GDBCompoundValueDescriptor
       
    94         GDBConnection
    94         GDBConnection
    95         GDBDebugger
    95         GDBDebugger
    96         GDBDebuggerObject
    96         GDBDebuggerObject
    97         GDBEnumValueDescriptor
       
    98         GDBInternalEvent
    97         GDBInternalEvent
    99         GDBInvalidObject
    98         GDBInvalidObject
   100         GDBMICommand
    99         GDBMICommand
   101         GDBParser
   100         GDBMIParser
   102         GDBPrimitiveValueDescriptor
       
   103         GDBSessionRecorder
   101         GDBSessionRecorder
   104         GDBSimulatorProcess
   102         GDBSimulatorProcess
   105         GDBStreamOutputEvent
   103         GDBStreamOutputEvent
   106         GDBThreadStatusRunning
   104         GDBThreadStatusRunning
   107         GDBThreadStatusStopped
   105         GDBThreadStatusStopped
   108         GDBThreadStatusTerminated
   106         GDBThreadStatusTerminated
   109         GDBUnixProcess
   107         GDBUnixProcess
   110         GDBAddresValueDescriptor
       
   111         GDBBooleanValueDescriptor
       
   112         GDBBreakpoint
   108         GDBBreakpoint
   113         GDBConsoleOutputEvent
   109         GDBConsoleOutputEvent
   114         GDBEventSetEvent
   110         GDBEventSetEvent
   115         GDBExecutionEvent
   111         GDBExecutionEvent
   116         GDBExitEvent
   112         GDBExitEvent
   117         GDBFrame
   113         GDBFrame
   118         GDBIntegerValueDescriptor
       
   119         GDBListValueDescriptor
       
   120         GDBLogOutputEvent
   114         GDBLogOutputEvent
   121         #'GDBMI_ada_task_info'
   115         #'GDBMI_ada_task_info'
   122         #'GDBMI_add_inferior'
   116         #'GDBMI_add_inferior'
   123         #'GDBMI_break_after'
   117         #'GDBMI_break_after'
   124         #'GDBMI_break_commands'
   118         #'GDBMI_break_commands'
   226         #'GDBMI_var_set_visualizer'
   220         #'GDBMI_var_set_visualizer'
   227         #'GDBMI_var_show_attributes'
   221         #'GDBMI_var_show_attributes'
   228         #'GDBMI_var_show_format'
   222         #'GDBMI_var_show_format'
   229         #'GDBMI_var_update'
   223         #'GDBMI_var_update'
   230         GDBNotificationEvent
   224         GDBNotificationEvent
   231         GDBObjectValueDescriptor
       
   232         GDBSelectedFrameChangedEvent
   225         GDBSelectedFrameChangedEvent
   233         GDBStatusEvent
   226         GDBStatusEvent
   234         GDBStringValueDescriptor
       
   235         GDBTargetOutputEvent
   227         GDBTargetOutputEvent
   236         GDBThread
   228         GDBThread
   237         GDBThreadGroup
   229         GDBThreadGroup
   238         GDBTransientObject
   230         GDBTransientObject
   239         GDBBreakpointDeletedEvent
   231         GDBBreakpointDeletedEvent
   260 extensionMethodNames
   252 extensionMethodNames
   261     "list class/selector pairs of extensions.
   253     "list class/selector pairs of extensions.
   262      A correponding method with real names must be present in my concrete subclasses"
   254      A correponding method with real names must be present in my concrete subclasses"
   263 
   255 
   264     ^ #(
   256     ^ #(
   265         'Boolean class' gdbValueDescriptor
   257         #'Magritte::MABooleanDescription' parseUsingGDBMIParser:
   266         'CharacterArray class' gdbValueDescriptor
   258         #'Magritte::MADescription' parseUsingGDBMIParser:
   267         'Integer class' gdbValueDescriptor
   259         #'Magritte::MANumberDescription' parseUsingGDBMIParser:
   268         'Object class' gdbValueDescriptor
   260         #'Magritte::MAStringDescription' parseUsingGDBMIParser:
       
   261         #'Magritte::MAToManyRelationDescription' parseUsingGDBMIParser:
   269     )
   262     )
   270 ! !
   263 ! !
   271 
   264 
   272 !jv_libgdbs class methodsFor:'description - project information'!
   265 !jv_libgdbs class methodsFor:'description - project information'!
   273 
   266