Re: Ignoring Type Differences

"Joachim Durchholz" <joachim_d@gmx.de>
18 Jul 2001 19:56:21 -0400

          From comp.compilers

Related articles
Ignoring Type Differences klapoin1@twcny.rr.com (Ken and Kristi LaPoint) (2001-07-17)
Re: Ignoring Type Differences joachim_d@gmx.de (Joachim Durchholz) (2001-07-18)
Re: Ignoring Type Differences vbdis@aol.com (2001-07-18)
| List of all articles for this month |

From: "Joachim Durchholz" <joachim_d@gmx.de>
Newsgroups: comp.compilers
Date: 18 Jul 2001 19:56:21 -0400
Organization: Compilers Central
References: 01-07-074
Keywords: types
Posted-Date: 18 Jul 2001 19:56:21 EDT

Ken and Kristi LaPoint <klapoin1@twcny.rr.com> wrote:
> Can anyone tell me when you might want the compiler to ignore type
> differences in an expression?


If the "compiler" isn't compiling but doing something else (say,
prettyprinting, extracting documentation à la Javadoc, extracting
interface information for inter-language bindings etc.).


Another setting would be if the code in question is never called, or if
it's expected to fail when called (such as during debugging, when
writing test stubs etc.). Typeless languages use this to their
advantage, as you can start to do testing before all type
inconsistencies have been sorted out.


Regards,
Joachim


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.