Re: [fpc-pascal] Pascal Scripting Engines

2010-12-13 Thread Benjamin Jan Alexander Rosseaux
You can also have a look to BESEN http://besen.sourceforge.net/ which is a full ECMAscript 5th Edition (a ka JavaScript) standard compliant scripting engine, which is developed by me. It has even a JIT for x86 x64. Am 10.12.2010 20:18, schrieb Andrew Brunner: Hi there, I'm considering

Re: [fpc-pascal] Pascal Scripting Engines

2010-12-11 Thread Sven Barth
On 10.12.2010 20:18, Andrew Brunner wrote: Hi there, I'm considering pascal scripting engines in stead of hot-swaped compiled stored objects/dlls for server back-end development for clients (namely WebSocket/JS). I came across a few relatively recent solutions and wanted to know if there are

[fpc-pascal] Pascal Scripting Engines

2010-12-10 Thread Andrew Brunner
Hi there, I'm considering pascal scripting engines in stead of hot-swaped compiled stored objects/dlls for server back-end development for clients (namely WebSocket/JS). I came across a few relatively recent solutions and wanted to know if there are any obscure light weight scripting engines but

Re: [fpc-pascal] Pascal Scripting Engines

2010-12-10 Thread Jorge Aldo G. de F. Junior
I once wrote a script engine that generated bytecodes. At the time it was harder due to defective variants support (something like that). Now it would be easier. 2010/12/10 Andrew Brunner andrew.t.brun...@gmail.com: Hi there, I'm considering pascal scripting engines in stead of hot-swaped

Re: [fpc-pascal] Pascal Scripting Engines

2010-12-10 Thread Andrew Brunner
I think FPC in general could benefit from a native FPC script. They have a link to a port of REM objects but the website said it was with flaws and tests were needed under linux. A light-weight scripting engine would need to be restricted to methods and object code. And perhaps some level of

Re: [fpc-pascal] Pascal Scripting Engines

2010-12-10 Thread Lee Jenkins
On 12/10/2010 2:18 PM, Andrew Brunner wrote: Hi there, I'm considering pascal scripting engines in stead of hot-swaped compiled stored objects/dlls for server back-end development for clients (namely WebSocket/JS). I came across a few relatively recent solutions and wanted to know if there are

Re: [fpc-pascal] Pascal Scripting Engines

2010-12-10 Thread David Butler
A while back I wrote a scripting language based on Pascal that features byte code generation. I haven't worked on it in many years though. http://www.eternallines.com/blaise/ http://www.eternallines.com/blaise/ On 10 December 2010 21:18, Andrew Brunner andrew.t.brun...@gmail.comwrote: Hi

Re: [fpc-pascal] Pascal Scripting Engines

2010-12-10 Thread Marcos Douglas
On Fri, Dec 10, 2010 at 5:23 PM, Lee Jenkins l...@datatrakpos.com wrote: On 12/10/2010 2:18 PM, Andrew Brunner wrote: Hi there, I'm considering pascal scripting engines in stead of hot-swaped compiled stored objects/dlls for server back-end development for clients (namely WebSocket/JS).