aboutsummaryrefslogtreecommitdiffstats
path: root/jsre/pp_js.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/geth, jsre: restore command line editing on windowsFelix Lange2015-08-121-137/+0
| | | | | | | | | | | | | 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
* all: fix license headers one more timeFelix Lange2015-07-241-1/+1
| | | | I forgot to update one instance of "go-ethereum" in commit 3f047be5a.
* all: update license headers to distiguish GPL/LGPLFelix Lange2015-07-231-4/+4
| | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library".
* added net.versionBas van Kervel2015-07-081-1/+1
|
* all: update license informationFelix Lange2015-07-071-0/+16
|
* output BigNumbers objects in console as stringsBas van Kervel2015-07-071-1/+9
|
* jsre: print function arguments tooPéter Szilágyi2015-06-091-1/+1
|
* jsre: sort pretty print output, fields before funcsPéter Szilágyi2015-06-091-3/+20
|
* jsre: fix wrong separator comma placing due to non consistent field ordersPéter Szilágyi2015-06-091-7/+7
|
* fixed printing circular structuresMarek Kotewicz2015-04-071-10/+6
|
* do not print Plain Object prototype fields in geth consoleMarek Kotewicz2015-04-031-1/+13
|
* printing object prototype functions in geth consoleMarek Kotewicz2015-04-031-3/+10
|
* fixed printing BigNumbersMarek Kotewicz2015-04-021-0/+7
|
* print nonenumerable properties of object in geth consoleMarek Kotewicz2015-04-021-7/+15
|
* removed big num from ppobscuren2015-03-251-2/+0
|
* Improved pretty printer for consoleobscuren2015-03-251-8/+21
|
* jsre:zelig2015-03-151-0/+55
- require became loadScript(), no require is supplied - bignumber_js.go: heredoc v2.0.3 minified fixed for otto Regexp incompatibility https://github.com/robertkrimen/otto#regular-expression-incompatibility - bignumber.min.js also updated in mist/assets/ext - ethereum_js.go: latest master minified - assetPath in constructor - Eval/Exec/Handle/ToVal nice API - jsre tests