19 lines
332 B
Smalltalk
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
|
|
]
|