File size: 317 Bytes
8f3f8db
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
transformations
extractExpandCaseDirective
	"Scan the top-level statements for an inlining directive of the form:
		self expandCases
	 and remove the directive from the method body. Answer whether
	 there was such a directive."

	^self
		extractDirective: #expandCases
		valueBlock: [:sendNode| true]
		default: false