Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmd, console: split off the console into a reusable package | Péter Szilágyi | 2016-05-30 | 1 | -258/+0 |
| | |||||
* | jsre: hide fields with prefix _ when pretty-printing | Felix Lange | 2016-04-13 | 1 | -1/+1 |
| | | | | This makes web3 internals like _requestManager invisible. | ||||
* | jsre: print BigNumber objects with custom constructor as number | Felix Lange | 2016-04-12 | 1 | -5/+13 |
| | |||||
* | jsre: include constructor properties in auto-completion | Felix Lange | 2016-02-15 | 1 | -9/+19 |
| | |||||
* | jsre: fix pretty printer for upstream otto change | Felix Lange | 2016-02-12 | 1 | -2/+11 |
| | |||||
* | jsre: fix annoying indentation when printing arrays of objects | Felix Lange | 2015-08-16 | 1 | -6/+9 |
| | | | | | | | | | | | | | | The pretty printer, dumb as it is, printed arrays of objects as [{ ... }] With this change, they now print as: [{ ... }] | ||||
* | jsre: bind the pretty printer to "inspect" in JS | Felix Lange | 2015-08-16 | 1 | -0/+8 |
| | |||||
* | cmd/geth, jsre: restore command line editing on windows | Felix Lange | 2015-08-12 | 1 | -0/+220 |
PR #856 broke command line editing by wrapping stdout with a filter that interprets ANSI escape sequences to fix colored printing on windows. Implement the printer in Go instead so it can do its own platform-dependent coloring. As a nice side effect, the JS console is now noticeably more responsive when printing results. Fixes #1608 Fixes #1612 |