ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:117088] [Ruby master Feature#20329] Clean up `--dump` sub-options
@ 2024-03-08  9:46 nobu (Nobuyoshi Nakada) via ruby-core
  2024-03-11  5:00 ` [ruby-core:117097] " k0kubun (Takashi Kokubun) via ruby-core
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: nobu (Nobuyoshi Nakada) via ruby-core @ 2024-03-08  9:46 UTC (permalink / raw
  To: ruby-core; +Cc: nobu (Nobuyoshi Nakada)

Issue #20329 has been reported by nobu (Nobuyoshi Nakada).

----------------------------------------
Feature #20329: Clean up `--dump` sub-options
https://bugs.ruby-lang.org/issues/20329

* Author: nobu (Nobuyoshi Nakada)
* Status: Open
----------------------------------------
Currently we have 5 options for `--dump` command line option.

* insns
* insns_without_opt
* yydebug(+error-tolerant)
* parsetree(+error-tolerant)
* parsetree_with_comment(+error-tolerant)

Among these, `insns_without_opt` is a variant of `insns`, and `parsetree_with_comment` is a variant of `parsetree`.
However, there is now another way to specify variants (e.g. `+error-tolerant`).
How about unifying the two so that the former can also be specified in the same form, such as `--dump=parsetree+comment+error-tolerant`?
It also will be able to abbreviate as parse+comm+err` or more.



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ruby-core:117097] [Ruby master Feature#20329] Clean up `--dump` sub-options
  2024-03-08  9:46 [ruby-core:117088] [Ruby master Feature#20329] Clean up `--dump` sub-options nobu (Nobuyoshi Nakada) via ruby-core
@ 2024-03-11  5:00 ` k0kubun (Takashi Kokubun) via ruby-core
  2024-03-12  3:22 ` [ruby-core:117103] " nobu (Nobuyoshi Nakada) via ruby-core
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: k0kubun (Takashi Kokubun) via ruby-core @ 2024-03-11  5:00 UTC (permalink / raw
  To: ruby-core; +Cc: k0kubun (Takashi Kokubun)

Issue #20329 has been updated by k0kubun (Takashi Kokubun).


What will replace `insns`? I don't want to type `insns+opt` every single time. If it stays as is and `insns_without_opt` is changed to `insns-opt` (insns minus opt) or something, I'm good.

----------------------------------------
Feature #20329: Clean up `--dump` sub-options
https://bugs.ruby-lang.org/issues/20329#change-107170

* Author: nobu (Nobuyoshi Nakada)
* Status: Open
----------------------------------------
Currently we have 5 options for `--dump` command line option.

* insns
* insns_without_opt
* yydebug(+error-tolerant)
* parsetree(+error-tolerant)
* parsetree_with_comment(+error-tolerant)

Among these, `insns_without_opt` is a variant of `insns`, and `parsetree_with_comment` is a variant of `parsetree`.
However, there is now another way to specify variants (e.g. `+error-tolerant`).
How about unifying the two so that the former can also be specified in the same form, such as `--dump=parsetree+comment+error-tolerant`?
It also will be able to abbreviate as parse+comm+err` or more.



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ruby-core:117103] [Ruby master Feature#20329] Clean up `--dump` sub-options
  2024-03-08  9:46 [ruby-core:117088] [Ruby master Feature#20329] Clean up `--dump` sub-options nobu (Nobuyoshi Nakada) via ruby-core
  2024-03-11  5:00 ` [ruby-core:117097] " k0kubun (Takashi Kokubun) via ruby-core
@ 2024-03-12  3:22 ` nobu (Nobuyoshi Nakada) via ruby-core
  2024-03-13 10:00 ` [ruby-core:117128] " eightbitraptor (Matthew Valentine-House) via ruby-core
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: nobu (Nobuyoshi Nakada) via ruby-core @ 2024-03-12  3:22 UTC (permalink / raw
  To: ruby-core; +Cc: nobu (Nobuyoshi Nakada)

Issue #20329 has been updated by nobu (Nobuyoshi Nakada).


`--dump=insns` will not be changed.
Since `+` is the separator, `insns+-opt` will be same as the current `insns_without_opt`.

----------------------------------------
Feature #20329: Clean up `--dump` sub-options
https://bugs.ruby-lang.org/issues/20329#change-107176

* Author: nobu (Nobuyoshi Nakada)
* Status: Open
----------------------------------------
Currently we have 5 options for `--dump` command line option.

* insns
* insns_without_opt
* yydebug(+error-tolerant)
* parsetree(+error-tolerant)
* parsetree_with_comment(+error-tolerant)

Among these, `insns_without_opt` is a variant of `insns`, and `parsetree_with_comment` is a variant of `parsetree`.
However, there is now another way to specify variants (e.g. `+error-tolerant`).
How about unifying the two so that the former can also be specified in the same form, such as `--dump=parsetree+comment+error-tolerant`?
It also will be able to abbreviate as parse+comm+err` or more.



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ruby-core:117128] [Ruby master Feature#20329] Clean up `--dump` sub-options
  2024-03-08  9:46 [ruby-core:117088] [Ruby master Feature#20329] Clean up `--dump` sub-options nobu (Nobuyoshi Nakada) via ruby-core
  2024-03-11  5:00 ` [ruby-core:117097] " k0kubun (Takashi Kokubun) via ruby-core
  2024-03-12  3:22 ` [ruby-core:117103] " nobu (Nobuyoshi Nakada) via ruby-core
@ 2024-03-13 10:00 ` eightbitraptor (Matthew Valentine-House) via ruby-core
  2024-03-18 14:21 ` [ruby-core:117209] " nobu (Nobuyoshi Nakada) via ruby-core
  2024-03-18 15:40 ` [ruby-core:117211] " eightbitraptor (Matthew Valentine-House) via ruby-core
  4 siblings, 0 replies; 6+ messages in thread
From: eightbitraptor (Matthew Valentine-House) via ruby-core @ 2024-03-13 10:00 UTC (permalink / raw
  To: ruby-core; +Cc: eightbitraptor (Matthew Valentine-House)

Issue #20329 has been updated by eightbitraptor (Matthew Valentine-House).


I don't feel particularly strongly about this, but something about have `+-` in the argument feels a little clunky to me.

I understand the desire to not change the existing options like `--dump=insns`, and that we've got ourselves into a state where we have both `with` and `without`, but what about if we changed the `+` to `,` - similar to how you pass options to the linker through gcc. Something like:

```
dump=insns
dump=insns,-opt
dump=parsetree,+error-tolerant,+comment
dump=yydebug,+error_tolerant
...etc...
```

----------------------------------------
Feature #20329: Clean up `--dump` sub-options
https://bugs.ruby-lang.org/issues/20329#change-107206

* Author: nobu (Nobuyoshi Nakada)
* Status: Open
----------------------------------------
Currently we have 5 options for `--dump` command line option.

* insns
* insns_without_opt
* yydebug(+error-tolerant)
* parsetree(+error-tolerant)
* parsetree_with_comment(+error-tolerant)

Among these, `insns_without_opt` is a variant of `insns`, and `parsetree_with_comment` is a variant of `parsetree`.
However, there is now another way to specify variants (e.g. `+error-tolerant`).
How about unifying the two so that the former can also be specified in the same form, such as `--dump=parsetree+comment+error-tolerant`?
It also will be able to abbreviate as `parse+comm+err` or more.



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ruby-core:117209] [Ruby master Feature#20329] Clean up `--dump` sub-options
  2024-03-08  9:46 [ruby-core:117088] [Ruby master Feature#20329] Clean up `--dump` sub-options nobu (Nobuyoshi Nakada) via ruby-core
                   ` (2 preceding siblings ...)
  2024-03-13 10:00 ` [ruby-core:117128] " eightbitraptor (Matthew Valentine-House) via ruby-core
@ 2024-03-18 14:21 ` nobu (Nobuyoshi Nakada) via ruby-core
  2024-03-18 15:40 ` [ruby-core:117211] " eightbitraptor (Matthew Valentine-House) via ruby-core
  4 siblings, 0 replies; 6+ messages in thread
From: nobu (Nobuyoshi Nakada) via ruby-core @ 2024-03-18 14:21 UTC (permalink / raw
  To: ruby-core; +Cc: nobu (Nobuyoshi Nakada)

Issue #20329 has been updated by nobu (Nobuyoshi Nakada).


eightbitraptor (Matthew Valentine-House) wrote in #note-4:
> ```
> dump=insns
> dump=insns,-opt
> dump=parsetree,+error-tolerant,+comment
> dump=yydebug,+error_tolerant
> ...etc...
> ```

This looks nice.

Would `--dump=insns --dump=-opt` have the same effect with `--dump=insns,-opt`?

----------------------------------------
Feature #20329: Clean up `--dump` sub-options
https://bugs.ruby-lang.org/issues/20329#change-107298

* Author: nobu (Nobuyoshi Nakada)
* Status: Open
----------------------------------------
Currently we have 5 options for `--dump` command line option.

* insns
* insns_without_opt
* yydebug(+error-tolerant)
* parsetree(+error-tolerant)
* parsetree_with_comment(+error-tolerant)

Among these, `insns_without_opt` is a variant of `insns`, and `parsetree_with_comment` is a variant of `parsetree`.
However, there is now another way to specify variants (e.g. `+error-tolerant`).
How about unifying the two so that the former can also be specified in the same form, such as `--dump=parsetree+comment+error-tolerant`?
It also will be able to abbreviate as `parse+comm+err` or more.



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ruby-core:117211] [Ruby master Feature#20329] Clean up `--dump` sub-options
  2024-03-08  9:46 [ruby-core:117088] [Ruby master Feature#20329] Clean up `--dump` sub-options nobu (Nobuyoshi Nakada) via ruby-core
                   ` (3 preceding siblings ...)
  2024-03-18 14:21 ` [ruby-core:117209] " nobu (Nobuyoshi Nakada) via ruby-core
@ 2024-03-18 15:40 ` eightbitraptor (Matthew Valentine-House) via ruby-core
  4 siblings, 0 replies; 6+ messages in thread
From: eightbitraptor (Matthew Valentine-House) via ruby-core @ 2024-03-18 15:40 UTC (permalink / raw
  To: ruby-core; +Cc: eightbitraptor (Matthew Valentine-House)

Issue #20329 has been updated by eightbitraptor (Matthew Valentine-House).


nobu (Nobuyoshi Nakada) wrote in #note-5:
> 
> This looks nice.
> 
> Would `--dump=insns --dump=-opt` have the same effect with `--dump=insns,-opt`?

I don't have strong opinions about this, but it seems like a good idea.

----------------------------------------
Feature #20329: Clean up `--dump` sub-options
https://bugs.ruby-lang.org/issues/20329#change-107299

* Author: nobu (Nobuyoshi Nakada)
* Status: Open
----------------------------------------
Currently we have 5 options for `--dump` command line option.

* insns
* insns_without_opt
* yydebug(+error-tolerant)
* parsetree(+error-tolerant)
* parsetree_with_comment(+error-tolerant)

Among these, `insns_without_opt` is a variant of `insns`, and `parsetree_with_comment` is a variant of `parsetree`.
However, there is now another way to specify variants (e.g. `+error-tolerant`).
How about unifying the two so that the former can also be specified in the same form, such as `--dump=parsetree+comment+error-tolerant`?
It also will be able to abbreviate as `parse+comm+err` or more.



-- 
https://bugs.ruby-lang.org/
 ______________________________________________
 ruby-core mailing list -- ruby-core@ml.ruby-lang.org
 To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
 ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-03-18 15:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-08  9:46 [ruby-core:117088] [Ruby master Feature#20329] Clean up `--dump` sub-options nobu (Nobuyoshi Nakada) via ruby-core
2024-03-11  5:00 ` [ruby-core:117097] " k0kubun (Takashi Kokubun) via ruby-core
2024-03-12  3:22 ` [ruby-core:117103] " nobu (Nobuyoshi Nakada) via ruby-core
2024-03-13 10:00 ` [ruby-core:117128] " eightbitraptor (Matthew Valentine-House) via ruby-core
2024-03-18 14:21 ` [ruby-core:117209] " nobu (Nobuyoshi Nakada) via ruby-core
2024-03-18 15:40 ` [ruby-core:117211] " eightbitraptor (Matthew Valentine-House) via ruby-core

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).