Esempio n. 1
0
 internal static VALUE str_cat(VALUE str, string ptr, int len, YYLTYPE location)
 {
     return new VALUE((string)str.value + ptr.Substring(0, (int)len), location);
 }
Esempio n. 2
0
 internal static string RSTRING(VALUE v)
 {
     return (string)v.value;
 }