I am writing an IDE to use with Delphi DWScript开发者_开发问答 and now have a simple debuggable script. I now want to highlight the executable lines in my source (like the blue dots at the left of the
Thanks to TdwsDebugger I can debug a complete script using: Debugger := TdwsDebugger.Create(nil); Debugger.BeginDebug(Execution);
I decided to have a concerted effort to get the excellent DWScript (Delph Web Script DWS) integrated into a simple IDE using SynEdit. DWScript is currently being agressively developed and has a number
I know dwscript has operator overloading for compound operators += etc. I would like to have operator overloading for +, - etc as well for use in addition, multiplication etc. of matrix objects.
I\'ve hit a wall with DWScript trying to \"use\" other 开发者_JS百科units example: uses utils, qusers;
Imaging this scripting code: procedure A; begin CallToDelphi; end; procedure B; begin // do something end; I have exposed the procedure \"CallToDelphi\" to the script. So when it is called, I\'m b
How do you render a view as a string from a controller in MVC 2? In MVC 1, I used CaptureActionHtml. I\'m having the same problem with it as a sim开发者_JS百科ilar question, but is there a way to do