aboutsummaryrefslogtreecommitdiffstats
path: root/jsre/jsre.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/geth, jsre, rpc: run all JS code on the event loopFelix Lange2015-05-251-149/+86
| | | | | | 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.
* Merge pull request #882 from zsfelfoldi/developJeffrey Wilcke2015-05-081-2/+17
|\ | | | | Otto.ToValue concurrency error fixed
| * ToVal serialization fixzsfelfoldi2015-05-081-2/+3
| |
| * Otto.ToValue concurrency error fixedzsfelfoldi2015-05-081-2/+16
| |
* | jsre, cmd/geth: updated web3.js and altered settimeoutobscuren2015-05-081-5/+5
|/
* setTimeout and sendAsync implementedzsfelfoldi2015-05-061-13/+220
| | | | added and eval queue for serializing JSRE vm execution
* Better error reporting in the console. Updated ethereum.jsobscuren2015-03-251-1/+11
|
* using robertkrimen/otto, godeps updatedzsfelfoldi2015-03-201-1/+1
|
* ethutil -> commonzelig2015-03-161-2/+2
|
* jsre:zelig2015-03-151-0/+115
- 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