alex / alex/rply

Parsing functions with multiple arguments

Open
#114 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
391
Forks
62
PR merge metrics
No merged PRs in 30d

Description

I have managed to successfully implement functions with no arguments into my parser and they parser correctly, The way I have it so far also allows me to parse functions with a single argument. But I am not sure how to parse functions with multiple arguments. The code I have for this at the moment is the following:

```python
@self.pg.production('arg : type expr')
def typed_arg(p):
return [p[0], p[1]]

# Argument list for functions:
# function f(int x) {
# print(x);
# }

@self.pg.production('arg_list : arg COMMA arg_list')
def arg_list(p):
return [p[0]] + p[2]

@self.pg.production('arg_list : ')
def empty_args(p):
return []
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.