コード例 #1
0
        internal void DefineCapturedScope(int scope_id, int id, string captured_name)
        {
            if (reader != null)
            {
                throw new InvalidOperationException();
            }

            AnonymousScopeEntry scope = anonymous_scopes [scope_id];

            scope.AddCapturedScope(id, captured_name);
        }