Right now, it's as if every type in Objj is of type (id).
id is a subtype of everything and everything is a subtype of id.
Making objective-j statically typed would just be a matter of
including other rules for "non id" type variables.
The current compiler does not do a full parse of the source, which
would be the first step. We've been wanting a new compiler for awhile
now, mostly for better syntax error reporting, and more advanced tools.
BTW, you know there's a dynamic type checker built into Objective-J?
Each time objj_msgSend is invoked it tries to check to make sure the
types are correct.
-tom
> --
> You received this message because you are subscribed to the Google
> Groups "Cappuccino & Objective-J" group.
> To post to this group, send email to objec...@googlegroups.com.
> To unsubscribe from this group, send email to objectivej+...@googlegroups.com
> .
> For more options, visit this group at http://groups.google.com/group/objectivej?hl=en
> .
>
>
and you call myMethod with an int, objj can't figure out which one to
call. Has this changed?