aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/CodeTools (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-1/+1
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-09-02First batch of the unit test changes for the new constants semanticsMelanie Thielker1-1/+1
in XEngine. This turned out to be a lot of work to catch up.
2008-09-02Correct the representation of the automatic null stringMelanie Thielker1-1/+1
2008-09-02Remove the ((bool)()) cast, since it can make c# barfMelanie Thielker1-2/+2
2008-09-02Add an explicit cast to bool for the if expression so that any base typesMelanie Thielker1-2/+2
that slip in will not cause it to break
2008-09-01This is an attempt to fix the handling of constants in LSL.Melanie Thielker2-12/+15
It wraps constants in new LSLType(x), so that lists with constant values are processed correctly. Contains changes to the lsl.parser.cs that are not (yet) reflected in opensim-libs, since this experimental patch affects XEngine only. Also contains nuts.
2008-08-29Maintis #2078Melanie Thielker1-3/+10
Thank you, ralphos, for a patch that corrects the handling of compiler warnings in the XEngine, which were erronoeously reported as errors!
2008-08-18Formatting cleanup.Jeff Ames3-6/+4
2008-07-31Allow the list hack from issue 1863 to compile, however its behavior isMike Mazur1-7699/+7741
different than in SL. See http://opensimulator.org/mantis/view.php?id=1863 for details.
2008-07-31Allow assignments in if/while/do-while control statements. Fix issue 1862.Mike Mazur1-7692/+8011
2008-07-31Fix issue 1860; exception thrown in the parser on if/if-else/for/while/do-whileMike Mazur2-10/+14
statements with no body.
2008-07-28Reinstate the configuration option on XEngine's use of the lexicalMelanie Thielker1-5/+1
compiler. Changes the default in OpenSim.ini.example to "true" to allow for a broader user base for testing.
2008-07-27Use new LSL compiler by default in DotNetEngine and XEngine. Fix issues ↵Mike Mazur1-2/+6
1651, 1339.
2008-07-27Log to console if C# line/column lookup fails.Mike Mazur1-1/+2
2008-07-24Replace the try/catch with a null check.Mike Mazur1-6/+3
2008-07-23Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2-5/+5
2008-07-23Enable LSL <-> C# source location mapping when reporing compiler errors to ↵Mike Mazur1-3/+28
the user in-world. This method is not yet perfect but is an improvement in accuracy over the existing method.
2008-07-23First version of position mapping between LSL <-> C# implemented.Mike Mazur1-111/+246
2008-07-21Mantis#1801. Thank you kindly, Junta_Kohime for a patch that:Charles Krinke1-1/+1
I found a problem trying to get s value directly from a quaternion q. Compiling a script which directly access to q.s value, caused the following error: CS0103: 'The . symbol cannot be used in LSL except in float values or vector components'. Detected around: q.s I did a small change to allow alphabetic letter "s" to be interpretated as valid identifier. This solves the problem.
2008-07-16Mantis#1753. Thank you kindly, Kinoc for a patch that:Charles Krinke2-0/+5
Brings Yield Prolog up to date with sourceforge version 0.9.10 Patched applies to both DotNet and XEngine.
2008-07-14Mantis#1728. Thank you kindly, Mikem for a patch that solves:Charles Krinke1-7071/+7644
The compiler was missing grammar rules for += etc. operators on vector.member variables, which the attached patch implements.
2008-07-12Patch #9142 (No mantis)Melanie Thielker4-12/+53
Add a config option to OpenSim.ini to select between script compilers in the XEngine without recompile. Set UseNewCompiler=true in OpenSim.ini and try it out. Creates the ICodeConverter interface and adapts the new compiler to it.
2008-07-11Thanks Mike for another LSL compiler patch which fixes a bug where 'vector ↵Johan Berntsson1-6947/+7211
v=<0, 0, -0.5>' caused a syntax error, and implements multiple assignments in one line (x = y = 3;)
2008-07-10Patch from Mike: errors from the LSL/C# compilers are now reported to the ↵Johan Berntsson1-1/+1
user in-world
2008-07-09Patch from Mike which removes a lexer warning in the LSL compiler.Johan Berntsson1-9593/+9326
2008-07-08another patch from Mike: the llscript compiler is now available in XEngine ↵Johan Berntsson5-0/+29509
as well. Thanks Mike
2008-06-30properly explaining each #pragma warning disableDr Scofield1-4/+5
massaging OSHttpRequestPump to not abort on exceptions...
2008-06-27last round of warning squashing. calling it a day now.Dr Scofield2-7/+11
2008-06-26Mantis#1602. Thank you, Kinoc for a patch to:Charles Krinke1-3/+47
Patch to activate YieldProlog on Xengine. Only adds YieldProlog to assembly if required.
2008-06-24* Applied patch from Melanie, mantis issue #1581 - "Refactor LSL language, ↵lbsa713-0/+997
api and compiler out of XEngine" "First stage in a major Script Engine refactor, that will result in the LSL implementaions ebing reconverged. Not there yet, but one major part is done." Thank you, Melanie!