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

__STUB__Values() private static method

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