GDBOutputFormat.st
changeset 211 d493b4969b59
parent 162 e56b2f6369af
child 224 34a835fad1c8
equal deleted inserted replaced
210:474b26f6fb75 211:d493b4969b59
     1 "{ Encoding: utf8 }"
     1 "{ Encoding: utf8 }"
     2 
     2 
     3 "
     3 "
     4 jv:libgdbs - GNU Debugger Interface Library
     4 jv:libgdbs - GNU Debugger Interface Library
     5 Copyright (C) 2015-now Jan Vrany
     5 Copyright (C) 2015-now Jan Vrany
       
     6 Copyright (C) 2020 LabWare
     6 
     7 
     7 This library is free software; you can redistribute it and/or
     8 This library is free software; you can redistribute it and/or
     8 modify it under the terms of the GNU Lesser General Public
     9 modify it under the terms of the GNU Lesser General Public
     9 License as published by the Free Software Foundation; either
    10 License as published by the Free Software Foundation; either
    10 version 2.1 of the License. 
    11 version 2.1 of the License. 
    36 
    37 
    37 copyright
    38 copyright
    38 "
    39 "
    39 jv:libgdbs - GNU Debugger Interface Library
    40 jv:libgdbs - GNU Debugger Interface Library
    40 Copyright (C) 2015-now Jan Vrany
    41 Copyright (C) 2015-now Jan Vrany
       
    42 Copyright (C) 2020 LabWare
    41 
    43 
    42 This library is free software; you can redistribute it and/or
    44 This library is free software; you can redistribute it and/or
    43 modify it under the terms of the GNU Lesser General Public
    45 modify it under the terms of the GNU Lesser General Public
    44 License as published by the Free Software Foundation; either
    46 License as published by the Free Software Foundation; either
    45 version 2.1 of the License. 
    47 version 2.1 of the License. 
   122 
   124 
   123     "Created: / 28-11-2018 / 14:00:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   125     "Created: / 28-11-2018 / 14:00:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   124 !
   126 !
   125 
   127 
   126 all
   128 all
   127     ^ self classVariables collect:[:name | self classVarAt: name ]
   129     ^ self classVariableNames collect:[:name | self classVarAt: name ]
   128 
   130 
   129     "Created: / 26-01-2018 / 00:45:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   131     "Created: / 26-01-2018 / 00:45:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   132     "Modified: / 04-11-2020 / 10:49:00 / Jan Vrany <jan.vrany@labware.com>"
   130 !
   133 !
   131 
   134 
   132 binary
   135 binary
   133     ^ FormatBinary
   136     ^ FormatBinary
   134 
   137