Esempio n. 1
0
        internal RubySymbol(MutableString /*!*/ str, int id, int runtimeId)
        {
            Assert.NotNull(str);
            Debug.Assert(str.IsFrozen);
            Debug.Assert(str.GetType() == typeof(MutableString));

            _string    = str;
            _id        = id;
            _runtimeId = runtimeId;
        }