'From Pharo0.1 of 16 May 2008 [Latest update: #10399] on 30 July 2009 at 9:54:19 am'!

!MCMethodDefinition methodsFor: 'accessing' stamp: 'damiencassou 7/30/2009 09:54'!
checkMethodAlreadyExists
	(self actualClass includesSelector: self selector)
		ifTrue: [Warning signal: 'a package is overriding ', self actualClass printString, '>>', self selector]! !

!MCMethodDefinition methodsFor: 'accessing' stamp: 'damiencassou 7/30/2009 09:48'!
load
	self checkMethodAlreadyExists.
	self actualClass
		compile: source
		classified: category
		withStamp: timeStamp
		notifying: (SyntaxError new category: category)! !

