VDBVariableObjectExecutor.st
changeset 178 5d1c3e5fab6b
child 264 23960fcb9dac
equal deleted inserted replaced
177:fd154978bab5 178:5d1c3e5fab6b
       
     1 "
       
     2 jv:vdb - Visual / VM Debugger
       
     3 Copyright (C) 2015-now Jan Vrany
       
     4 
       
     5 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
       
     6 
       
     7 You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
       
     8 "
       
     9 "{ Package: 'jv:vdb' }"
       
    10 
       
    11 "{ NameSpace: Smalltalk }"
       
    12 
       
    13 GDBVariableObjectExecutor subclass:#VDBVariableObjectExecutor
       
    14 	instanceVariableNames:''
       
    15 	classVariableNames:''
       
    16 	poolDictionaries:''
       
    17 	category:'VDB-Core'
       
    18 !
       
    19 
       
    20 !VDBVariableObjectExecutor class methodsFor:'documentation'!
       
    21 
       
    22 copyright
       
    23 "
       
    24 jv:vdb - Visual / VM Debugger
       
    25 Copyright (C) 2015-now Jan Vrany
       
    26 
       
    27 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
       
    28 
       
    29 You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
       
    30 "
       
    31 ! !
       
    32 
       
    33 !VDBVariableObjectExecutor methodsFor:'finalization'!
       
    34 
       
    35 finalize
       
    36     debugger isConnected ifTrue:[
       
    37         debugger send: (VDBMI_vdb_var_delete arguments: (Array with: '-c' with: name))
       
    38     ].
       
    39 
       
    40     "Created: / 06-07-2019 / 00:37:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    41 ! !
       
    42 
       
    43 !VDBVariableObjectExecutor class methodsFor:'documentation'!
       
    44 
       
    45 version_HG
       
    46 
       
    47     ^ '$Changeset: <not expanded> $'
       
    48 ! !
       
    49