[Vm-dev] VM Maker: SlangBrowser-dtl.10.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 28 14:50:35 UTC 2012


David T. Lewis uploaded a new version of SlangBrowser to project VM Maker:
http://source.squeak.org/VMMaker/SlangBrowser-dtl.10.mcz

==================== Summary ====================

Name: SlangBrowser-dtl.10
Author: dtl
Time: 28 May 2012, 10:50:20.484 am
UUID: 16d37a15-1253-49da-91d4-d6c1da47e04a
Ancestors: SlangBrowser-dtl.9

Move methodNotTranslatedMessage: out of ObjectMemory to support interpreter/object memory refactorings

=============== Diff against SlangBrowser-dtl.9 ===============

Item was added:
+ ----- Method: Object class>>methodNotTranslatedMessage: (in category '*SlangBrowser-VMMaker-Translation to C') -----
+ methodNotTranslatedMessage: aSelector
+ 	"For browser support with VMMaker"
+ 
+ 	^ 	'/* No source has been generated for #', aSelector asString, ' */', String cr,
+ 		'/* Method may have been fully inlined, or is not exported and */' translated,
+ 		String cr, '/* has no senders. See senders of #' translated, aSelector asString, ' */'
+ !

Item was removed:
- ----- Method: ObjectMemory class>>methodNotTranslatedMessage: (in category '*SlangBrowser-translation') -----
- methodNotTranslatedMessage: aSelector
- 	"For browser support with VMMaker"
- 
- 	^ 	'/* No source has been generated for #', aSelector asString, ' */', String cr,
- 		'/* Method may have been fully inlined, or is not exported and */' translated,
- 		String cr, '/* has no senders. See senders of #' translated, aSelector asString, ' */'
- !



More information about the Vm-dev mailing list