VDBMI_vdb_var_info_path_expression.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 21 Sep 2019 18:31:45 +0100
changeset 185 bb863cb24c1a
parent 178 5d1c3e5fab6b
child 264 23960fcb9dac
permissions -rw-r--r--
Do not try to raise transcript window if `Transcript` is not graphical ...but - for instance - a `StdOut` or `StdErr`.

"
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 }"

GDBMI_var_info_path_expression subclass:#VDBMI_vdb_var_info_path_expression
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'VDB-Core-Commands'
!

!VDBMI_vdb_var_info_path_expression 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/
"
! !

!VDBMI_vdb_var_info_path_expression methodsFor:'accessing'!

operation
        ^ 'vdb-var-info-path-expression'

    "Created: / 06-07-2019 / 01:25:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !