Skip to content

Commit

Permalink
[cosmetic] Groom instantiation of TAll
Browse files Browse the repository at this point in the history
  • Loading branch information
shingarov committed Sep 5, 2024
1 parent ab26975 commit b2d353b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/SpriteLang/TAll.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@ Class {
#category : #SpriteLang
}

{ #category : #'as yet unclassified' }
{ #category : #'instance creation' }
TAll class >> new [
^self shouldNotImplement
]

{ #category : #'instance creation' }
TAll class >> var: v type: t [
^self basicNew var: v; type: t; yourself
^self basicNew
var: v;
type: t;
yourself
]

{ #category : #SMT }
Expand Down

0 comments on commit b2d353b

Please sign in to comment.