Jurassic.Library.MapInstance.__STUB__Entries C# (CSharp) Method

__STUB__Entries() private static method

private static __STUB__Entries ( ScriptEngine engine, object thisObj, object args ) : object
engine ScriptEngine
thisObj object
args object
return object
        private static object __STUB__Entries(ScriptEngine engine, object thisObj, object[] args)
        {
            thisObj = TypeConverter.ToObject(engine, thisObj);
            if (!(thisObj is MapInstance))
                throw new JavaScriptException(engine, ErrorType.TypeError, "The method 'entries' is not generic.");
            return ((MapInstance)thisObj).Entries();
        }