Files
gt4carp/src/Carp/CarpPostMortemStackFrame.class.st
2022-06-13 15:10:12 +02:00

19 lines
332 B
Smalltalk

Class {
#name : #CarpPostMortemStackFrame,
#superclass : #GtJavaScriptPostMortemStackFrame,
#instVars : [
'source'
],
#category : #'Carp-Debugger'
}
{ #category : #accessing }
CarpPostMortemStackFrame >> source: aString [
source := aString
]
{ #category : #accessing }
CarpPostMortemStackFrame >> sourceText [
^ source
]