コード例 #1
0
ファイル: VALUE.cs プロジェクト: chunlea/rubydotnetcompiler
 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);
 }
コード例 #2
0
ファイル: VALUE.cs プロジェクト: chunlea/rubydotnetcompiler
 internal static string RSTRING(VALUE v)
 {
     return (string)v.value;
 }