Allow documenting unexposed return types in bind_native_method

Document return type of `Object.call` and `GDScript.new`
This commit is contained in:
eska 2016-08-06 02:20:59 +02:00
parent 2b5198b23d
commit 4cd246898e
3 changed files with 12 additions and 3 deletions

View file

@ -1651,7 +1651,7 @@ void Object::_bind_methods() {
}
ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call",&Object::_call_bind,mi,defargs);
ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call:Variant",&Object::_call_bind,mi,defargs);
}
{