Multiple changes:
- Add the book and a few first pages - Add the code generator
This commit is contained in:
23
src/Carp/CarpBinding.class.st
Normal file
23
src/Carp/CarpBinding.class.st
Normal file
@@ -0,0 +1,23 @@
|
||||
Class {
|
||||
#name : #CarpBinding,
|
||||
#superclass : #CarpExpression,
|
||||
#instVars : [
|
||||
'name'
|
||||
],
|
||||
#category : #'Carp-IDE'
|
||||
}
|
||||
|
||||
{ #category : #accessing }
|
||||
CarpBinding >> bindingName [
|
||||
^ self subclassResponsibility
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
CarpBinding >> name [
|
||||
^ name
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
CarpBinding >> name: aString [
|
||||
name := aString
|
||||
]
|
Reference in New Issue
Block a user