aboutsummaryrefslogtreecommitdiffstats
path: root/jsre/jsre_test.go
Commit message (Collapse)AuthorAgeFilesLines
* jsre: fix #1876, sleep too short on a slow test serverPéter Szilágyi2015-11-051-1/+1
|
* cmd/geth, jsre: restore command line editing on windowsFelix Lange2015-08-121-8/+3
| | | | | | | | | | | | | 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
* common/compiler, common/docserver, jsre: fix tests on windowsFelix Lange2015-08-061-8/+22
|
* 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".
* all: update license informationFelix Lange2015-07-071-0/+16
|
* cmd/geth, jsre, rpc: run all JS code on the event loopFelix Lange2015-05-251-6/+6
| | | | | | Some JSRE methods (PrettyPrint, ToVal) bypassed the event loop. All calls to the JS VM are now wrapped. In order to make this somewhat more foolproof, the otto VM is now a local variable inside the event loop.
* setTimeout and sendAsync implementedzsfelfoldi2015-05-061-0/+28
| | | | added and eval queue for serializing JSRE vm execution
* common: remove WriteFile and ReadAllFile (use ioutil instead)zelig2015-03-271-4/+4
|
* fixed jsre testzsfelfoldi2015-03-201-1/+1
|
* using robertkrimen/otto, godeps updatedzsfelfoldi2015-03-201-1/+1
|
* ethutil -> commonzelig2015-03-161-3/+3
|
* jsre: remove assetpath using GOPATH from testzelig2015-03-151-21/+20
|
* jsre:zelig2015-03-151-0/+85
- 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