yberreby / rgo

[STALLED] A Go compiler, written in Rust.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Maybe allow some warnings

MovingtoMars opened this issue · comments

commented

There are a couple of pesky warnings that keep coming up, but are pretty harmless. How about #[allow(dead_code)]?

I'm not sure this would be a good thing, because we will very likely forget to remove it when we should, and dead code is something we really want to avoid in the long run. These warnings (I count three) should also disappear pretty quickly, once the parser is complete.

A bit off-topic: I won't be able to comment on issues / PRs, except on Sundays - and even then it will be hard. I have a lot of work to do for my studies, and I can't afford being distracted until it is done. I love working on rgo and discussing design decisions, but I'm kind of pressed for time right now.

commented

No problem, man.

Glad you understand! You're free to merge PRs in the meantime, since you have push access. Please just try to:

  • keep the git history clean
  • run rustfmt
  • leave XXX-style comments in any place we'd want to revisit in the future

See CONTRIBUTING.md for details.

See you later, and thanks for your PRs. This is really nice of you.

commented

Thanks :)
(I just installed a rustfmt plugin)