-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMod.st
More file actions
52 lines (36 loc) · 724 Bytes
/
Mod.st
File metadata and controls
52 lines (36 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Instruction subclass: Mod [
Mod class >> mod: anObject with: anObject2 to: aSymbol [
^ self new
mod: anObject with: anObject2 to: aSymbol;
yourself
]
| i j dest |
mod: anObject with: anObject2 to: aSymbol [
i := anObject.
j := anObject2.
dest := aSymbol
]
source [
^ i
]
param [
^ j
]
destination [
^ dest
]
accept: aVisitor [
aVisitor visitMod: self
]
printOn: aStream [
aStream
nextPutAll: 'mod '.
i printOn: aStream.
aStream
nextPutAll: ' with '.
j printOn: aStream.
aStream
nextPutAll: ' to '.
dest printOn: aStream
]
]