[Date Prev][Date Next][Thread Prev][Thread Next][Author Index][Date Index][Thread Index]
translator enhancement needed
- To: <dean>
- Subject: translator enhancement needed
- From: Mark S. Miller <mark>
- Date: Fri, 5 Jan 90 20:21:31 PST
- Cc: <xtech>
I need the following translator enhancement:
When I write in Smalltalk:
[ statement1. statement2 ] mutex: aSema4.
It needs to translate into the C++:
{
MUTEX_BEGIN(aSema4);
statement1;
statement2;
}
Until I hear otherwise, I'll go ahead programming in Smalltalk
assuming this enhancement will happen. Reasonable?