VDBTerminalView.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 27 Sep 2019 20:52:14 +0100
changeset 187 4c23ffccaf8e
parent 169 807f5f62c910
child 194 9884bb25cd69
permissions -rw-r--r--
Fix `VDBVariableListApplication` w.r.t. `GDBVariable` that has no var-obj associated ...such as when the variable is synthetic (provided by frame decorator)

"
jv:vdb - Visual / VM Debugger
Copyright (C) 2015-now Jan Vrany

This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'

You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
"
"{ Package: 'jv:vdb' }"

"{ NameSpace: Smalltalk }"

VT100TerminalView subclass:#VDBTerminalView
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'VDB-UI-Console-Unix'
!

!VDBTerminalView class methodsFor:'documentation'!

copyright
"
jv:vdb - Visual / VM Debugger
Copyright (C) 2015-now Jan Vrany

This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'

You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
"
! !

!VDBTerminalView methodsFor:'initialization & release'!

closeStreams
    "Do nothing here, streams should be closed by an application,
     not the view!!"

    "Created: / 12-06-2019 / 12:57:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !