Add half of a coder

This commit is contained in:
2022-04-17 20:49:42 +02:00
parent 199758d97d
commit 64a8353006
7 changed files with 343 additions and 6 deletions

View File

@@ -1,9 +1,22 @@
Class {
#name : #CarpExpression,
#superclass : #Object,
#instVars : [
'documentation'
],
#category : #'Carp-IDE'
}
{ #category : #accessing }
CarpExpression >> documentation [
^ documentation ifNil: ['']
]
{ #category : #accessing }
CarpExpression >> documentation: aString [
documentation := aString
]
{ #category : #converting }
CarpExpression >> toCarp [
^ self subclassResponsibility