[Mono-list] Re: Javascript and Mono

Miguel de Icaza miguel@ximian.com
06 Jan 2003 23:07:49 -0500


Hello,

> We probably need to know exactly what helperfunctions (runtime) 
> Microsoft JScript contains (don't know exactly where to find it in the 
> Microsoft documentation)..

This is easy, *specially* as you will have to do this when writing the
Reflection.Emit backend.

	* Write simple program:

	* Compile simple program with jsc from Microsoft (either in
	  Windows or using Rotor on BSD/Linux).

	* Run ildasm on the output.

	* Try to match that output from the compiler.

	* If any helper routines are invoked, make your generated code
	  do the same.

miguel