<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
        {mso-style-priority:99;
        mso-style-link:"Plain Text Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.5pt;
        font-family:Consolas;}
span.PlainTextChar
        {mso-style-name:"Plain Text Char";
        mso-style-priority:99;
        mso-style-link:"Plain Text";
        font-family:Consolas;}
span.EmailStyle19
        {mso-style-type:personal;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang=EN-US link=blue vlink=purple>
<div class=Section1>
<p class=MsoPlainText>tfpt review
"/shelveset:CompositeConversions3;REDMOND\tomat"<o:p></o:p></p>
<p class=MsoNormal><b><o:p> </o:p></b></p>
<p class=MsoNormal><b>DLR change (interpreter)<o:p></o:p></b></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>Fixes interpretation of UnaryExpresion cast with a custom
method.<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal><b>Ruby changes<o:p></o:p></b></p>
<p class=MsoNormal><b><o:p> </o:p></b></p>
<p class=MsoNormal>1) <o:p></o:p></p>
<p class=MsoNormal>Implements composite conversions and defines default composite
protocol conversions. A composite conversion is basically a combination of at
least 2 protocol conversions. For example, some methods convert to an integer using
“to_int” if available and if not “to_i” is tried. Other
methods try “to_str” first and “to_int” then or vice versa
to convert to String or Fixnum.<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>For example, File#new’s first parameter performs to_str-to_int
conversion. To declare such a parameter a library function uses a parameter of
type Union<T1, T2> marked by [DefaultProtocol]:<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>public
static RubyFile/*!*/ CreateFile(RubyClass/*!*/ self, <o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'> <span
style='background:yellow;mso-highlight:yellow'>[DefaultProtocol]Union<int,
MutableString> descriptorOrPath</span>, [Optional, DefaultProtocol]MutableString
mode, [Optional]int permission) {<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'><o:p> </o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>
if (descriptorOrPath.IsFixnum()) { … } else { … }<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>}<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'><o:p> </o:p></span></p>
<p class=MsoNormal>This says that default protocol for Int32 and for MutableString
should be performed in the order specified by the type parameters.<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>2)<o:p></o:p></p>
<p class=MsoNormal>Some methods use CastToInteger protocol. This protocol calls
to_int, similarly to CastToFixnum, but the result could be both Fixnum or
Bignum. This is not a composite conversion since only one conversion is called
(to_int) however the type of the result could be either Int32 or BigInteger. There
are also other places where we need to pass around a union of Int32 and
BigInteger. IntegerValue struct serves this purpose. A default protocol for
IntegerValue is CastToInteger. An example of use is Bignum#<<:<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>[RubyMethod("<<")]
<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>public
static object/*!*/ LeftShift(RubyContext/*!*/ context, BigInteger/*!*/ self, <span
style='background:yellow;mso-highlight:yellow'>[DefaultProtocol]IntegerValue</span>
other) {<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'> return
other.IsFixnum ? LeftShift(self, other.Fixnum) : LeftShift(self, other.Bignum);<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>}<o:p></o:p></span></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>3)<o:p></o:p></p>
<p class=MsoNormal>Refactors protocol conversion classes.<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>4)<o:p></o:p></p>
<p class=MsoNormal>Fixes File#open, IO#open, IO#for_fd.<o:p></o:p></p>
<p class=MsoNormal>Fixes String#to_i and Kernel#Integer. <o:p></o:p></p>
<p class=MsoNormal>Tokenizer now returns whitespace tokens in verbatim mode.<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>5) <o:p></o:p></p>
<p class=MsoNormal>Changes format mode in runrspec to “dotted”. It
doesn’t produce so much noise.<o:p></o:p></p>
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal>Tomas<o:p></o:p></p>
<p class=MsoPlainText><o:p> </o:p></p>
</div>
</body>
</html>