aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/CodeTools/LSL2CSCodeTransformer.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* If the LSL state_entry() event definition contains any parameters, then ↵Justin Clark-Casey (justincc)2013-11-021-0/+10
| | | | | | | | generate syntax error as seen on the LL grid This is done through the parser and so generates the same syntax error message if any parameters are wrongly specified for this event. We were already enforcing event names in the parser. This is only for state_entry so far as an initial test of the approach - appears to work correctly.
* Formatting cleanup.Jeff Ames2009-06-101-1/+1
|
* Allow empty assignment in for-loopMike Mazur2009-06-071-3/+15
| | | | | | | | | | | | For loops with no assignment are no longer syntax errors. For example, this is now valid: for ( ; i < 10; i++) { ... } Corresponding changes to lsl.{lexer,parser} in r99 in opensim-libs. Fixes Mantis #2501. Fixes Mantis #2884.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Refactor XEngine parser as per suggestions from mikemMelanie Thielker2008-09-231-1/+1
|
* Correct the representation of the automatic null stringMelanie Thielker2008-09-021-1/+1
|
* Replace the try/catch with a null check.Mike Mazur2008-07-241-6/+3
|
* another patch from Mike: the llscript compiler is now available in XEngine ↵Johan Berntsson2008-07-081-0/+186
as well. Thanks Mike