Skip to content
This repository was archived by the owner on Oct 14, 2021. It is now read-only.

Fold starlark_module! macro a bit more #135

Merged
merged 1 commit into from
May 27, 2019
Merged

Fold starlark_module! macro a bit more #135

merged 1 commit into from
May 27, 2019

Conversation

stepancheg
Copy link
Contributor

Introduce the intermediate step which does a transformation like:

x: String, ...

into

(named) x: String, ...

so both named and unnamed arguments are handled uniformly by matching
on $is_named:tt $t:ident (# x or (named) x).

Resulting macros are even more complicated than before but contain
fewer repetitions (and fewer LOC), so it's possible to extend them
further without drowning in copypasta.

@stepancheg
Copy link
Contributor Author

Clippy: rust-lang/rust-clippy#4133

Introduce the intermediate step which does a transformation like:

```
x: String, ...
```

into

```
(named) x: String, ...
```

so both named and unnamed arguments are handled uniformly by matching
on `$is_named:tt $t:ident` (`# x` or `(named) x`).

Resulting macros are even more complicated than before but contain
fewer repetitions (and fewer LOC), so it's possible to extend them
further without drowning in copypasta.
@stepancheg stepancheg merged commit 936d1af into google:master May 27, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants