rubex

https://github.com/sciruby/rubex

Ruby

rubex - A Ruby-like language for writing Ruby C extensions.

Rubex::AST::Statement::ArgumentList#analyse_statement

func_ptr - switch that determines if this ArgList is part of the
argument list of an argument that is a function pointer.
For eg - 
  cfunc int foo(int (*bar)(int, float)).
                           ^^^ This is an arg list inside a function.

Source | Google | Stack overflow

Edit

git clone [email protected]:sciruby/rubex.git

cd rubex

open lib/rubex/ast/statement/argument_list.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-Rubex--AST--Statement--ArgumentList-analyse_statement-for-pr


# Commit to git

git add lib/rubex/ast/statement/argument_list.rbgit commit -m "better docs for Rubex::AST::Statement::ArgumentList#analyse_statement"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-Rubex--AST--Statement--ArgumentList-analyse_statement-for-pr

hub pull-request


# Celebrate!