-
Notifications
You must be signed in to change notification settings - Fork 694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signature
and Time
incorrectly has their prototype methods flagged as instance variables
#1235
Comments
This belongs to the doc repository and is somehow related to the way instance variables are detected (in my opinion this is also related to nodegit/nodegit.github.com#46) |
The generated output is in the doc repository but I think the issue is that the input in "git_signature",
{
"decl": [
"char * name",
"char * email",
"git_time when"
], "git_time",
{
"decl": [
"git_time_t time",
"int offset"
], |
maybe, you seem to know more than I do :) |
Any news on this? I assume the type definitions here are also generated from the documentation and that makes working with nodegit in TypeScript a bit cumbersome 😩 The (assumed) underlying issue is not exclusive to |
If you look at the online documentation for
Signature
andTime
, you will see that both types have a few instance variables. However, if you look at the actual generatedsignature.cc
andtime.cc
files, you will see that those are actually prototype methods and not instance variables defined on the JavaScript object.The text was updated successfully, but these errors were encountered: