Ignore:
Timestamp:
May 29, 2020, 10:45:52 PM (4 years ago)
Author:
coas-nagasima
Message:

Visual Studio 2019 と Bridge.NET でビルドできるよう更新。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/webapp/webmrbc/Ruby.cs

    r321 r425  
    66using System.Linq;
    77using Bridge;
    8 using Bridge.Text.RegularExpressions;
    98using System.Collections.Generic;
    109using System.Runtime.InteropServices;
     
    115114                        if (nextCode == null)
    116115                                return code;
    117                         return (node[])code.Concat(nextCode);
     116                        return code.Concat(nextCode).ToArray();
    118117                }
    119118
     
    126125                private mrb_sym get_sym(string str)
    127126                {
    128                         int i = syms.IndexOf(str);
     127                        int i = Array.IndexOf(syms, str);
    129128                        if (i < 0) {
    130129                                i = syms.Length;
     
    149148                mrb_sym get_var_name(string str)
    150149                {
    151                         int i = syms.IndexOf(str);
     150                        int i = Array.IndexOf(syms, str);
    152151
    153152                        // ローカル変数なら登録されているはずなので、
Note: See TracChangeset for help on using the changeset viewer.