up vote 1 down vote favorite
share [g+] share [fb]

What is the point of type definition on method parameters on Caché Object (from Intersystems) since after it's pre-compiled to the .int format, it removes any typing information, thus making no difference at all?

link|improve this question
feedback

3 Answers

Those types aren't used/checked internal to Cache code, but they are used when you expose your classes via XML, SQL, etc.

One would hope that in a future version Intersystems would start doing some compile-time type checking, but that may be too much to ask.

link|improve this answer
feedback

If you're writing ANSI M code, you shouldn't have types at all. My guess is that this is specific to Intersystems code.

link|improve this answer
Yes, it shouldn't be there because it doesn't make any difference. It's just a fake typing feature like many others fake features. – Frank Fiuza Sep 22 '08 at 13:37
feedback

There aren't really datatypes in Cache, so there is no type checking.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.