aboutsummaryrefslogtreecommitdiffstats
path: root/jsre/pretty.go
Commit message (Collapse)AuthorAgeFilesLines
* jsre: hide fields with prefix _ when pretty-printingFelix Lange2016-04-131-1/+1
| | | | This makes web3 internals like _requestManager invisible.
* jsre: print BigNumber objects with custom constructor as numberFelix Lange2016-04-121-5/+13
|
* jsre: include constructor properties in auto-completionFelix Lange2016-02-151-9/+19
|
* jsre: fix pretty printer for upstream otto changeFelix Lange2016-02-121-2/+11
|
* jsre: fix annoying indentation when printing arrays of objectsFelix Lange2015-08-161-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 JSFelix Lange2015-08-161-0/+8
|
* cmd/geth, jsre: restore command line editing on windowsFelix Lange2015-08-121-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