r-lib / R6

Encapsulated object-oriented programming for R
https://R6.r-lib.org
Other
404 stars 56 forks source link

print.R6 should display methods with () in different place #173

Closed wch closed 4 years ago

wch commented 5 years ago

This is what it currently prints:

<WebServer>
  Inherits from: <Server>
  Public:
    getHost: function () 

It should be:

<WebServer>
  Inherits from: <Server>
  Public:
    getHost(): function
hadley commented 4 years ago

Duplicate of #127